pub enum Contents32 {
Raw(Vec<u8>),
StrTab(Vec<StrTabEntry>),
Symbols(Vec<Symbol32>),
RelaSymbols(Vec<Rela32>),
Dynamics(Vec<Dyn32>),
}
Expand description
section’s contents
Variants§
Raw(Vec<u8>)
almost section’s data
StrTab(Vec<StrTabEntry>)
String Table
Symbols(Vec<Symbol32>)
symbol table’s representation
RelaSymbols(Vec<Rela32>)
relocation symbol table’s representation
Dynamics(Vec<Dyn32>)
dynamic information’s representation
Implementations§
Source§impl Contents32
impl Contents32
Trait Implementations§
Source§impl Clone for Contents32
impl Clone for Contents32
Source§fn clone(&self) -> Contents32
fn clone(&self) -> Contents32
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 Contents32
impl Debug for Contents32
Source§impl Default for Contents32
impl Default for Contents32
Source§impl Hash for Contents32
impl Hash for Contents32
Source§impl Ord for Contents32
impl Ord for Contents32
Source§fn cmp(&self, other: &Contents32) -> Ordering
fn cmp(&self, other: &Contents32) -> 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 Contents32
impl PartialEq for Contents32
Source§impl PartialOrd for Contents32
impl PartialOrd for Contents32
impl Eq for Contents32
impl StructuralPartialEq for Contents32
Auto Trait Implementations§
impl Freeze for Contents32
impl RefUnwindSafe for Contents32
impl Send for Contents32
impl Sync for Contents32
impl Unpin for Contents32
impl UnwindSafe for Contents32
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