[][src]Struct bevy_asset::Assets

pub struct Assets<T: Resource> { /* fields omitted */ }

Stores Assets of a given type and tracks changes to them.

Implementations

impl<T: Resource> Assets<T>[src]

pub fn add(&mut self, asset: T) -> Handle<T>[src]

pub fn set(&mut self, handle: Handle<T>, asset: T)[src]

pub fn add_default(&mut self, asset: T) -> Handle<T>[src]

pub fn get_with_id(&self, id: HandleId) -> Option<&T>[src]

pub fn get_id_mut(&mut self, id: HandleId) -> Option<&mut T>[src]

pub fn get(&self, handle: &Handle<T>) -> Option<&T>[src]

pub fn get_mut(&mut self, handle: &Handle<T>) -> Option<&mut T>[src]

pub fn get_or_insert_with(
    &mut self,
    handle: Handle<T>,
    insert_fn: impl FnOnce() -> T
) -> &mut T
[src]

pub fn iter(&self) -> impl Iterator<Item = (Handle<T>, &T)>[src]

pub fn remove(&mut self, handle: &Handle<T>) -> Option<T>[src]

pub fn asset_event_system(
    events: ResMut<Events<AssetEvent<T>>>,
    assets: ResMut<Assets<T>>
)
[src]

Trait Implementations

impl<T: Resource> Default for Assets<T>[src]

Auto Trait Implementations

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

impl<T> Send for Assets<T>

impl<T> Sync for Assets<T>

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

impl<T> UnwindSafe for Assets<T> where
    T: 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> Component for T where
    T: 'static + Send + Sync

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

impl<T> FromResources for T where
    T: Default
[src]

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

impl<T> Resource for T where
    T: 'static + Send + Sync
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,