pub enum SectionData<'a> {
Show 19 variants
Empty,
Undefined(&'a [u8]),
Group {
flags: &'a u32,
indicies: &'a [u32],
},
StrArray(&'a [u8]),
FnArray32(&'a [u32]),
FnArray64(&'a [u64]),
SymbolTable32(&'a [Entry32]),
SymbolTable64(&'a [Entry64]),
DynSymbolTable32(&'a [DynEntry32]),
DynSymbolTable64(&'a [DynEntry64]),
SymTabShIndex(&'a [u32]),
Note64(&'a NoteHeader, &'a [u8]),
Rela32(&'a [Rela<P32>]),
Rela64(&'a [Rela<P64>]),
Rel32(&'a [Rel<P32>]),
Rel64(&'a [Rel<P64>]),
Dynamic32(&'a [Dynamic<P32>]),
Dynamic64(&'a [Dynamic<P64>]),
HashTable(&'a HashTable),
}
Formats the value using the given formatter.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.