Struct goblin::mach::load_command::DylibTableOfContents
source · #[repr(C)]pub struct DylibTableOfContents {
pub symbol_index: u32,
pub module_index: u32,
}
Expand description
a table of contents entry
Fields§
§symbol_index: u32
the defined external symbol (index into the symbol table)
module_index: u32
index into the module table this symbol is defined in
Trait Implementations§
source§impl Clone for DylibTableOfContents
impl Clone for DylibTableOfContents
source§fn clone(&self) -> DylibTableOfContents
fn clone(&self) -> DylibTableOfContents
Returns a copy 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 DylibTableOfContents
impl Debug for DylibTableOfContents
source§impl FromCtx<Endian> for DylibTableOfContents
impl FromCtx<Endian> for DylibTableOfContents
source§impl<'a> IntoCtx<Endian> for &'a DylibTableOfContents
impl<'a> IntoCtx<Endian> for &'a DylibTableOfContents
source§impl IntoCtx<Endian> for DylibTableOfContents
impl IntoCtx<Endian> for DylibTableOfContents
source§impl<'a> TryFromCtx<'a, Endian> for DylibTableOfContentswhere
DylibTableOfContents: 'a,
impl<'a> TryFromCtx<'a, Endian> for DylibTableOfContentswhere DylibTableOfContents: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a DylibTableOfContents
impl<'a> TryIntoCtx<Endian> for &'a DylibTableOfContents
source§impl TryIntoCtx<Endian> for DylibTableOfContents
impl TryIntoCtx<Endian> for DylibTableOfContents
impl Copy for DylibTableOfContents
Auto Trait Implementations§
impl RefUnwindSafe for DylibTableOfContents
impl Send for DylibTableOfContents
impl Sync for DylibTableOfContents
impl Unpin for DylibTableOfContents
impl UnwindSafe for DylibTableOfContents
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