[][src]Struct object::read::elf::ElfSection

pub struct ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: FileHeader
{ /* fields omitted */ }

A section of an ElfFile.

Trait Implementations

impl<'data, 'file, Elf: Debug> Debug for ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: FileHeader,
    Elf::SectionHeader: Debug
[src]

impl<'data, 'file, Elf: FileHeader> ObjectSection<'data> for ElfSection<'data, 'file, Elf>[src]

type RelocationIterator = ElfRelocationIterator<'data, 'file, Elf>

An iterator over the relocations for a section. Read more

Auto Trait Implementations

impl<'data, 'file, Elf> RefUnwindSafe for ElfSection<'data, 'file, Elf> where
    Elf: RefUnwindSafe,
    <Elf as FileHeader>::Endian: RefUnwindSafe,
    <Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
    <Elf as FileHeader>::SectionHeader: RefUnwindSafe,
    <Elf as FileHeader>::Sym: RefUnwindSafe

impl<'data, 'file, Elf> Send for ElfSection<'data, 'file, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, 'file, Elf> Sync for ElfSection<'data, 'file, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, 'file, Elf> Unpin for ElfSection<'data, 'file, Elf> where
    'data: 'file, 

impl<'data, 'file, Elf> UnwindSafe for ElfSection<'data, 'file, Elf> where
    Elf: RefUnwindSafe,
    <Elf as FileHeader>::Endian: RefUnwindSafe,
    <Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
    <Elf as FileHeader>::SectionHeader: RefUnwindSafe,
    <Elf as FileHeader>::Sym: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.