pub struct LcSymtab {
pub symoff: u32,
pub nsyms: u32,
pub stroff: u32,
pub strsize: u32,
}Expand description
Structurally decoded body of an LC_SYMTAB command. Four
u32s sized exactly 16 bytes on disk.
Fields§
§symoff: u32File offset of the nlist_64 table.
nsyms: u32Number of symbols in the table.
stroff: u32File offset of the string table.
strsize: u32String table size in bytes.
Implementations§
Trait Implementations§
impl Copy for LcSymtab
impl Eq for LcSymtab
impl StructuralPartialEq for LcSymtab
Auto Trait Implementations§
impl Freeze for LcSymtab
impl RefUnwindSafe for LcSymtab
impl Send for LcSymtab
impl Sync for LcSymtab
impl Unpin for LcSymtab
impl UnsafeUnpin for LcSymtab
impl UnwindSafe for LcSymtab
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