Struct stack_graphs::arena::Handle[][src]

pub struct Handle<T> { /* fields omitted */ }

A handle to an instance of type T that was allocated from an Arena.

Safety

Because of the type parameter T, the compiler can ensure that you don’t use a handle for one type to index into an arena of another type. However, if you have multiple arenas for the same type, we do not do anything to ensure that you only use a handle with the corresponding arena.

Trait Implementations

impl<T> Clone for Handle<T>[src]

impl<T> Copy for Handle<T>[src]

impl<T> Debug for Handle<T>[src]

impl<T> Eq for Handle<T>[src]

impl<T> Hash for Handle<T>[src]

impl<H, T> Index<Handle<H>> for SupplementalArena<H, T>[src]

type Output = T

The returned type after indexing.

impl<H, T> IndexMut<Handle<H>> for SupplementalArena<H, T> where
    T: Default
[src]

impl<T> Ord for Handle<T>[src]

impl<T> PartialEq<Handle<T>> for Handle<T>[src]

impl<T> PartialOrd<Handle<T>> for Handle<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Handle<T> where
    T: RefUnwindSafe

impl<T> Send for Handle<T> where
    T: Send

impl<T> Sync for Handle<T> where
    T: Sync

impl<T> Unpin for Handle<T> where
    T: Unpin

impl<T> UnwindSafe for Handle<T> where
    T: 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.