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

pub struct LoadCommandIterator<'data, E: Endian> { /* fields omitted */ }

An iterator over the load commands of a MachHeader.

Implementations

impl<'data, E: Endian> LoadCommandIterator<'data, E>[src]

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

Return the next load command.

Trait Implementations

impl<'data, E: Clone + Endian> Clone for LoadCommandIterator<'data, E>[src]

impl<'data, E: Copy + Endian> Copy for LoadCommandIterator<'data, E>[src]

impl<'data, E: Debug + Endian> Debug for LoadCommandIterator<'data, E>[src]

impl<'data, E: Default + Endian> Default for LoadCommandIterator<'data, E>[src]

Auto Trait Implementations

impl<'data, E> RefUnwindSafe for LoadCommandIterator<'data, E> where
    E: RefUnwindSafe

impl<'data, E> Send for LoadCommandIterator<'data, E> where
    E: Send

impl<'data, E> Sync for LoadCommandIterator<'data, E> where
    E: Sync

impl<'data, E> Unpin for LoadCommandIterator<'data, E> where
    E: Unpin

impl<'data, E> UnwindSafe for LoadCommandIterator<'data, E> where
    E: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.