[][src]Struct dynvec::region::DeallocateAll

pub struct DeallocateAll<'a, H, R: Region<H>> { /* fields omitted */ }

An iterator that causes a region to deallocate all its allocations.

Trait Implementations

impl<'a, H, R> DoubleEndedIterator for DeallocateAll<'a, H, R> where
    R: Region<H>,
    R::Pointers: DoubleEndedIterator
[src]

impl<'a, H, R> ExactSizeIterator for DeallocateAll<'a, H, R> where
    R: Region<H>,
    R::Pointers: ExactSizeIterator
[src]

impl<'a, H, R> FusedIterator for DeallocateAll<'a, H, R> where
    R: Region<H>,
    R::Pointers: FusedIterator
[src]

impl<'a, H, R: Region<H>> Iterator for DeallocateAll<'a, H, R>[src]

type Item = (*mut u8, H)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, H, R> RefUnwindSafe for DeallocateAll<'a, H, R> where
    R: RefUnwindSafe,
    <R as Region<H>>::Pointers: RefUnwindSafe
[src]

impl<'a, H, R> Send for DeallocateAll<'a, H, R> where
    R: Send,
    <R as Region<H>>::Pointers: Send
[src]

impl<'a, H, R> Sync for DeallocateAll<'a, H, R> where
    R: Sync,
    <R as Region<H>>::Pointers: Sync
[src]

impl<'a, H, R> Unpin for DeallocateAll<'a, H, R> where
    <R as Region<H>>::Pointers: Unpin
[src]

impl<'a, H, R> !UnwindSafe for DeallocateAll<'a, H, R>[src]

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.