[][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.

Methods

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]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

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

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

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

type Storage = A::HandleStorage

Associated storage type for this component.

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

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> Event for T where
    T: Send + Sync + 'static, 

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

impl<T> Any for T where
    T: Any

impl<T> Erased for T

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