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

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

An iterator over the notes in an ElfSegment or ElfSection.

Implementations

impl<'data, Elf> ElfNoteIterator<'data, Elf> where
    Elf: FileHeader
[src]

pub fn next(&mut self) -> Result<Option<ElfNote<'data, Elf>>>[src]

Returns the next note.

Trait Implementations

impl<'data, Elf: Debug> Debug for ElfNoteIterator<'data, Elf> where
    Elf: FileHeader,
    Elf::Endian: Debug
[src]

Auto Trait Implementations

impl<'data, Elf> RefUnwindSafe for ElfNoteIterator<'data, Elf> where
    <Elf as FileHeader>::Endian: RefUnwindSafe

impl<'data, Elf> Send for ElfNoteIterator<'data, Elf> where
    <Elf as FileHeader>::Endian: Send

impl<'data, Elf> Sync for ElfNoteIterator<'data, Elf> where
    <Elf as FileHeader>::Endian: Sync

impl<'data, Elf> Unpin for ElfNoteIterator<'data, Elf> where
    <Elf as FileHeader>::Endian: Unpin

impl<'data, Elf> UnwindSafe for ElfNoteIterator<'data, Elf> where
    <Elf as FileHeader>::Endian: UnwindSafe

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.