pub struct SymtabCommand {
pub cmd: u32,
pub cmdsize: u32,
pub symoff: u32,
pub nsyms: u32,
pub stroff: u32,
pub strsize: u32,
}Fields§
§cmd: u32§cmdsize: u32§symoff: u32the byte offset from the start of the file to the location of the symbol table entries
nsyms: u32number of symbol table entries
stroff: u32the byte offset from the start of the file to the location of the string table.
strsize: u32the size (in bytes) of the string table.
Implementations§
Trait Implementations§
Source§impl Clone for SymtabCommand
impl Clone for SymtabCommand
Source§fn clone(&self) -> SymtabCommand
fn clone(&self) -> SymtabCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SymtabCommand
impl Debug for SymtabCommand
Source§impl PartialEq for SymtabCommand
impl PartialEq for SymtabCommand
impl Eq for SymtabCommand
impl StructuralPartialEq for SymtabCommand
Auto Trait Implementations§
impl Freeze for SymtabCommand
impl RefUnwindSafe for SymtabCommand
impl Send for SymtabCommand
impl Sync for SymtabCommand
impl Unpin for SymtabCommand
impl UnwindSafe for SymtabCommand
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