[][src]Struct components_arena::Id

pub struct Id<C: Component> { /* fields omitted */ }

Arena item handle.

Trait Implementations

impl<C: Component> Clone for Id<C>[src]

impl<C: Component> ComponentId for Id<C>[src]

impl<C: Component> Copy for Id<C>[src]

impl<C: Component> Debug for Id<C>[src]

impl<C: Component> Eq for Id<C>[src]

impl<C: Component> Hash for Id<C>[src]

impl<C: Component> Index<Id<C>> for Arena<C>[src]

type Output = C

The returned type after indexing.

impl<C: Component> IndexMut<Id<C>> for Arena<C>[src]

impl<C: Component> Ord for Id<C>[src]

impl<C: Component> PartialEq<Id<C>> for Id<C>[src]

impl<C: Component> PartialOrd<Id<C>> for Id<C>[src]

impl<C: Component> RefUnwindSafe for Id<C>[src]

impl<C: Component> Send for Id<C>[src]

impl<C: Component> Sync for Id<C>[src]

impl<C: Component> Unpin for Id<C>[src]

impl<C: Component> UnwindSafe for Id<C>[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,