pub enum SectionData<'a> {
StringTable(StringTable<'a>),
SymbolTable(SymbolEntries<'a>),
DynamicSymbolTable(SymbolEntries<'a>),
RelocationSection(GenericRelSection<'a>),
UnknownSectionType,
}Variants§
StringTable(StringTable<'a>)
SymbolTable(SymbolEntries<'a>)
DynamicSymbolTable(SymbolEntries<'a>)
RelocationSection(GenericRelSection<'a>)
UnknownSectionType
Trait Implementations§
Source§impl<'a> Clone for SectionData<'a>
impl<'a> Clone for SectionData<'a>
Source§fn clone(&self) -> SectionData<'a>
fn clone(&self) -> SectionData<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for SectionData<'a>
impl<'a> RefUnwindSafe for SectionData<'a>
impl<'a> Send for SectionData<'a>
impl<'a> Sync for SectionData<'a>
impl<'a> Unpin for SectionData<'a>
impl<'a> UnwindSafe for SectionData<'a>
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