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),
}

Variants§

§

Empty

§

Undefined(&'a [u8])

§

Group

Fields

§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)

Implementations§

source§

impl<'a> SectionData<'a>

source

pub fn strings(&self) -> Result<SectionStrings<'a>, ()>

Trait Implementations§

source§

impl<'a> Debug for SectionData<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.