[][src]Struct dynvec::region::global::Global

pub struct Global<H> { /* fields omitted */ }

A region that allocates items using the global allocator.

Trait Implementations

impl<H> Default for Global<H>[src]

impl<H> Region<H> for Global<H>[src]

type Pointers = IntoIter<*mut u8>

An iterator over all the allocations of this region.

Auto Trait Implementations

impl<H> RefUnwindSafe for Global<H> where
    H: RefUnwindSafe
[src]

impl<H> !Send for Global<H>[src]

impl<H> !Sync for Global<H>[src]

impl<H> Unpin for Global<H> where
    H: Unpin
[src]

impl<H> UnwindSafe for Global<H> where
    H: UnwindSafe
[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<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.