pub struct ErasedLoadedAsset { /* private fields */ }Expand description
A “type erased / boxed” counterpart to LoadedAsset. This is used in places where the loaded type is not statically known.
Implementations§
Source§impl ErasedLoadedAsset
impl ErasedLoadedAsset
Sourcepub fn asset_type_id(&self) -> TypeId
pub fn asset_type_id(&self) -> TypeId
Sourcepub fn asset_type_name(&self) -> &'static str
pub fn asset_type_name(&self) -> &'static str
Retrieves the type_name of the stored Asset type.
Sourcepub fn get_labeled(&self, label: impl AsRef<str>) -> Option<&ErasedLoadedAsset>
pub fn get_labeled(&self, label: impl AsRef<str>) -> Option<&ErasedLoadedAsset>
Returns the ErasedLoadedAsset for the given label, if it exists.
Sourcepub fn get_labeled_by_id(
&self,
id: impl Into<UntypedAssetId>,
) -> Option<&ErasedLoadedAsset>
pub fn get_labeled_by_id( &self, id: impl Into<UntypedAssetId>, ) -> Option<&ErasedLoadedAsset>
Returns the labeled asset given its asset ID if it exists.
This can be used to get the asset from its handle since &Handle implements
Into<UntypedAssetId>.
Sourcepub fn iter_labels(&self) -> impl Iterator<Item = &str>
pub fn iter_labels(&self) -> impl Iterator<Item = &str>
Iterate over all labels for “labeled assets” in the loaded asset
Sourcepub fn downcast<A: Asset>(self) -> Result<LoadedAsset<A>, ErasedLoadedAsset>
pub fn downcast<A: Asset>(self) -> Result<LoadedAsset<A>, ErasedLoadedAsset>
Cast this loaded asset as the given type. If the type does not match, the original type-erased asset is returned.
Trait Implementations§
Source§impl<A: Asset> From<LoadedAsset<A>> for ErasedLoadedAsset
impl<A: Asset> From<LoadedAsset<A>> for ErasedLoadedAsset
Source§fn from(asset: LoadedAsset<A>) -> Self
fn from(asset: LoadedAsset<A>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ErasedLoadedAsset
impl !UnwindSafe for ErasedLoadedAsset
impl Freeze for ErasedLoadedAsset
impl Send for ErasedLoadedAsset
impl Sync for ErasedLoadedAsset
impl Unpin for ErasedLoadedAsset
impl UnsafeUnpin for ErasedLoadedAsset
Blanket Implementations§
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> ConditionalSend for Twhere
T: Send,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.