Struct object::read::macho::MachOSectionIterator[][src]

pub struct MachOSectionIterator<'data, 'file, Mach, R = &'data [u8]> where
    'data: 'file,
    Mach: MachHeader,
    R: ReadRef<'data>, 
{ /* fields omitted */ }

An iterator over the sections of a MachOFile.

Trait Implementations

impl<'data, 'file, Mach, R> Debug for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: MachHeader,
    R: ReadRef<'data>, 
[src]

impl<'data, 'file, Mach, R> Iterator for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: MachHeader,
    R: ReadRef<'data>, 
[src]

type Item = MachOSection<'data, 'file, Mach, R>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'data, 'file, Mach, R> RefUnwindSafe for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: RefUnwindSafe,
    R: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe

impl<'data, 'file, Mach, R> Send for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: Sync,
    R: Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Section: Sync

impl<'data, 'file, Mach, R> Sync for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: Sync,
    R: Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Section: Sync

impl<'data, 'file, Mach, R> Unpin for MachOSectionIterator<'data, 'file, Mach, R> where
    'data: 'file, 

impl<'data, 'file, Mach, R> UnwindSafe for MachOSectionIterator<'data, 'file, Mach, R> where
    Mach: RefUnwindSafe,
    R: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Section: 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.