[][src]Struct amethyst_assets::Handle

pub struct Handle<A: ?Sized> { /* fields omitted */ }

A handle to an asset. This is usually what the user deals with, the actual asset (A) is stored in an AssetStorage.

Implementations

impl<A> Handle<A>[src]

pub fn id(&self) -> u32[src]

Return the 32 bit id of this handle.

pub fn downgrade(&self) -> WeakHandle<A>[src]

Downgrades the handle and creates a WeakHandle.

Trait Implementations

impl<A: ?Sized> Clone for Handle<A>[src]

impl<A> Component for Handle<A> where
    A: Asset
[src]

type Storage = A::HandleStorage

Associated storage type for this component.

impl<A: ?Sized> Debug for Handle<A>[src]

impl<A: ?Sized> Eq for Handle<A>[src]

impl<A: ?Sized> Hash for Handle<A>[src]

impl<A: ?Sized> PartialEq<Handle<A>> for Handle<A>[src]

Auto Trait Implementations

impl<A: ?Sized> RefUnwindSafe for Handle<A> where
    A: RefUnwindSafe

impl<A: ?Sized> Send for Handle<A> where
    A: Send

impl<A: ?Sized> Sync for Handle<A> where
    A: Sync

impl<A: ?Sized> Unpin for Handle<A> where
    A: Unpin

impl<A: ?Sized> UnwindSafe for Handle<A> where
    A: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Clone for T where
    T: Clone
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,