Struct stadium::Handle[][src]

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

A safe handle to a specific object stored in a specific Stadium. This handle can be optained from the Builder::insert function.

Implementations

impl<T> Handle<T>[src]

pub fn raw(self) -> RawHandle[src]

Converts this Handle into a RawHandle.

Examples

let mut builder = stadium::builder();
let raw_handle = builder.insert("Hello").raw();

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<'a, T: 'a> Index<Handle<T>> for Stadium<'a>[src]

type Output = T

The returned type after indexing.

impl<'a, T: 'a> IndexMut<Handle<T>> for Stadium<'a>[src]

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

Auto Trait Implementations

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

impl<T> !Send for Handle<T>

impl<T> !Sync for Handle<T>

impl<T> Unpin for Handle<T>

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

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.