pub enum Contents64 {
Raw(Vec<u8>),
Symbols(Vec<Symbol64>),
RelaSymbols(Vec<Rela64>),
Dynamics(Vec<Dyn64>),
StrTab(Vec<StrTabEntry>),
}
Variants§
Raw(Vec<u8>)
almost section’s data
Symbols(Vec<Symbol64>)
symbol table
RelaSymbols(Vec<Rela64>)
relocation symbol table
Dynamics(Vec<Dyn64>)
dynamic information
StrTab(Vec<StrTabEntry>)
String Table
Implementations§
Source§impl Contents64
impl Contents64
Trait Implementations§
Source§impl Clone for Contents64
impl Clone for Contents64
Source§fn clone(&self) -> Contents64
fn clone(&self) -> Contents64
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 Contents64
impl Debug for Contents64
Source§impl Hash for Contents64
impl Hash for Contents64
Source§impl Ord for Contents64
impl Ord for Contents64
Source§fn cmp(&self, other: &Contents64) -> Ordering
fn cmp(&self, other: &Contents64) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Contents64
impl PartialEq for Contents64
Source§impl PartialOrd for Contents64
impl PartialOrd for Contents64
impl Eq for Contents64
impl StructuralPartialEq for Contents64
Auto Trait Implementations§
impl Freeze for Contents64
impl RefUnwindSafe for Contents64
impl Send for Contents64
impl Sync for Contents64
impl Unpin for Contents64
impl UnwindSafe for Contents64
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