Struct lief::macho::commands::SymbolCommand
pub struct SymbolCommand<'a> { /* private fields */ }
Expand description
Structure that represents the LC_SYMTAB
command
Implementations§
§impl SymbolCommand<'_>
impl SymbolCommand<'_>
pub fn symbol_offset(&self) -> u32
pub fn symbol_offset(&self) -> u32
Offset from the start of the file to the n_list associated with the command
pub fn numberof_symbols(&self) -> u32
pub fn numberof_symbols(&self) -> u32
Number of symbols registered
pub fn strings_offset(&self) -> u32
pub fn strings_offset(&self) -> u32
Offset from the start of the file to the string table
pub fn strings_size(&self) -> u32
pub fn strings_size(&self) -> u32
Size of the size string table
pub fn original_str_size(&self) -> u32
pub fn original_nb_symbols(&self) -> u32
pub fn symbol_table(&self) -> &[u8] ⓘ
pub fn string_table(&self) -> &[u8] ⓘ
Trait Implementations§
§impl Command for SymbolCommand<'_>
impl Command for SymbolCommand<'_>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SymbolCommand<'a>
impl<'a> !Send for SymbolCommand<'a>
impl<'a> !Sync for SymbolCommand<'a>
impl<'a> Unpin for SymbolCommand<'a>
impl<'a> UnwindSafe for SymbolCommand<'a>
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