Enum twizzler_abi::aux::AuxEntry
source · [−]#[repr(C)]
pub enum AuxEntry {
Null,
ProgramHeaders(u64, usize),
Environment(u64),
Arguments(usize, u64),
ExecId(ObjID),
}
Expand description
Auxillary information provided to a new program on runtime entry.
Variants
Null
Ends the aux array.
ProgramHeaders(u64, usize)
A pointer to this program’s program headers, and the number of them. See the ELF specification for more info.
Environment(u64)
A pointer to the env var array.
Arguments(usize, u64)
A pointer to the arguments array.
ExecId(ObjID)
The object ID of the executable.
Trait Implementations
impl Copy for AuxEntry
impl Eq for AuxEntry
impl StructuralEq for AuxEntry
impl StructuralPartialEq for AuxEntry
Auto Trait Implementations
impl ObjSafe for AuxEntry
impl RefUnwindSafe for AuxEntry
impl Send for AuxEntry
impl Sync for AuxEntry
impl Unpin for AuxEntry
impl UnwindSafe for AuxEntry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more