[][src]Struct redox_buffer_pool::MmapEntries

pub struct MmapEntries<I, E> where
    E: Copy
{ /* fields omitted */ }

The iterator given to the close handle, or optionally retrieved by manually destroying a buffer pool, that contains all the underlying allocations that the pool has been expanded with.

The iterator yields MmapEntry.

Trait Implementations

impl<I: Debug, E: Debug> Debug for MmapEntries<I, E> where
    E: Copy
[src]

impl<I, E> Iterator for MmapEntries<I, E> where
    E: Copy
[src]

type Item = MmapEntry<I, E>

The type of the elements being iterated over.

Auto Trait Implementations

impl<I, E> !RefUnwindSafe for MmapEntries<I, E>

impl<I, E> Send for MmapEntries<I, E> where
    E: Send,
    I: Send

impl<I, E> !Sync for MmapEntries<I, E>

impl<I, E> Unpin for MmapEntries<I, E>

impl<I, E> !UnwindSafe for MmapEntries<I, E>

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.