Enum bevy::asset::AssetEvent
pub enum AssetEvent<A>where
A: Asset,{
Added {
id: AssetId<A>,
},
Modified {
id: AssetId<A>,
},
Removed {
id: AssetId<A>,
},
LoadedWithDependencies {
id: AssetId<A>,
},
}
Expand description
Events that occur for a specific Asset
, such as “value changed” events and “dependency” events.
Variants§
Added
Emitted whenever an Asset
is added.
Modified
Emitted whenever an Asset
value is modified.
Removed
Emitted whenever an Asset
is removed.
LoadedWithDependencies
Emitted whenever an Asset
has been fully loaded (including its dependencies and all “recursive dependencies”).
Implementations§
§impl<A> AssetEvent<A>where
A: Asset,
impl<A> AssetEvent<A>where A: Asset,
pub fn is_loaded_with_dependencies(
&self,
asset_id: impl Into<AssetId<A>>
) -> bool
pub fn is_loaded_with_dependencies( &self, asset_id: impl Into<AssetId<A>> ) -> bool
Returns true
if this event is AssetEvent::LoadedWithDependencies
and matches the given id
.
pub fn is_added(&self, asset_id: impl Into<AssetId<A>>) -> bool
pub fn is_added(&self, asset_id: impl Into<AssetId<A>>) -> bool
Returns true
if this event is AssetEvent::Added
and matches the given id
.
pub fn is_modified(&self, asset_id: impl Into<AssetId<A>>) -> bool
pub fn is_modified(&self, asset_id: impl Into<AssetId<A>>) -> bool
Returns true
if this event is AssetEvent::Modified
and matches the given id
.
pub fn is_removed(&self, asset_id: impl Into<AssetId<A>>) -> bool
pub fn is_removed(&self, asset_id: impl Into<AssetId<A>>) -> bool
Returns true
if this event is AssetEvent::Removed
and matches the given id
.
Trait Implementations§
§impl<A> Clone for AssetEvent<A>where
A: Asset,
impl<A> Clone for AssetEvent<A>where A: Asset,
§fn clone(&self) -> AssetEvent<A>
fn clone(&self) -> AssetEvent<A>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<A> Debug for AssetEvent<A>where
A: Asset,
impl<A> Debug for AssetEvent<A>where A: Asset,
§impl<A> PartialEq<AssetEvent<A>> for AssetEvent<A>where
A: Asset,
impl<A> PartialEq<AssetEvent<A>> for AssetEvent<A>where A: Asset,
§fn eq(&self, other: &AssetEvent<A>) -> bool
fn eq(&self, other: &AssetEvent<A>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<A> Copy for AssetEvent<A>where A: Asset,
impl<A> Eq for AssetEvent<A>where A: Asset,
impl<A> Event for AssetEvent<A>where A: Asset, AssetEvent<A>: Send + Sync + 'static,
Auto Trait Implementations§
impl<A> RefUnwindSafe for AssetEvent<A>
impl<A> Send for AssetEvent<A>
impl<A> Sync for AssetEvent<A>
impl<A> Unpin for AssetEvent<A>
impl<A> UnwindSafe for AssetEvent<A>
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.