pub trait Nlist: Debug + Pod {
    type Word: Into<u64>;
    type Endian: Endian;
    fn n_strx(&self, endian: Self::Endian) -> u32;
    fn n_type(&self) -> u8;
    fn n_sect(&self) -> u8;
    fn n_desc(&self, endian: Self::Endian) -> u16;
    fn n_value(&self, endian: Self::Endian) -> Self::Word;
    fn name<'data>(
        &self, 
        endian: Self::Endian, 
        strings: StringTable<'data>
    ) -> Result<&'data [u8]> { ... }
    fn is_definition(&self) -> bool { ... }
    fn library_ordinal(&self, endian: Self::Endian) -> u8 { ... }
}Expand description
A trait for generic access to Nlist32 and Nlist64.
Associated Types
Required methods
Provided methods
fn is_definition(&self) -> bool
fn is_definition(&self) -> bool
Return true if the symbol is a definition of a function or data object.
fn library_ordinal(&self, endian: Self::Endian) -> u8
fn library_ordinal(&self, endian: Self::Endian) -> u8
Return the library ordinal.
This is either a 1-based index into the dylib load commands, or a special ordinal.