pub enum Type {
UNDEFINED,
ABSOLUTE_SYM,
SECTION,
PREBOUND,
INDIRECT,
UNKNOWN(u32),
}Expand description
Symbol type as defined by nlist_xx.n_type & N_TYPE
Variants§
UNDEFINED
The symbol is undefined
ABSOLUTE_SYM
The symbol is absolute
SECTION
The symbol is defined in a specific section
PREBOUND
The symbol is undefined and the image is using a prebound value
INDIRECT
The symbol is defined to be the same as another symbol
UNKNOWN(u32)
Trait Implementations§
impl Copy for Type
impl Eq for Type
impl StructuralEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more