pub enum AssetId<A>where
A: Asset,{
Index {
index: AssetIndex,
marker: PhantomData<fn() -> A>,
},
Uuid {
uuid: Uuid,
},
}
Expand description
A unique runtime-only identifier for an Asset
. This is cheap to Copy
/Clone
and is not directly tied to the
lifetime of the Asset. This means it can point to an Asset
that no longer exists.
For an identifier tied to the lifetime of an asset, see Handle
.
For an “untyped” / “generic-less” id, see UntypedAssetId
.
Variants§
Index
A small / efficient runtime identifier that can be used to efficiently look up an asset stored in Assets
. This is
the “default” identifier used for assets. The alternative(s) (ex: AssetId::Uuid
) will only be used if assets are
explicitly registered that way.
Uuid
A stable-across-runs / const asset identifier. This will only be used if an asset is explicitly registered in Assets
with one.
Implementations§
§impl<A> AssetId<A>where
A: Asset,
impl<A> AssetId<A>where A: Asset,
pub const DEFAULT_UUID: Uuid = _
pub const DEFAULT_UUID: Uuid = _
pub const INVALID_UUID: Uuid = _
pub const INVALID_UUID: Uuid = _
This asset id should never be valid. Assigning a value to this in Assets
will
produce undefined behavior, so don’t do it!
pub const fn invalid() -> AssetId<A>
pub const fn invalid() -> AssetId<A>
Returns an AssetId
with Self::INVALID_UUID
, which should never be assigned to.
pub fn untyped(self) -> UntypedAssetId
pub fn untyped(self) -> UntypedAssetId
Converts this to an “untyped” / “generic-less” Asset
identifier that stores the type information
inside the UntypedAssetId
.
Trait Implementations§
§impl<A> Enum for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> Enum for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync,
§fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
§fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
§fn field_mut(
&mut self,
__name_param: &str
) -> Option<&mut (dyn Reflect + 'static)>
fn field_mut( &mut self, __name_param: &str ) -> Option<&mut (dyn Reflect + 'static)>
§fn field_at_mut(
&mut self,
__index_param: usize
) -> Option<&mut (dyn Reflect + 'static)>
fn field_at_mut( &mut self, __index_param: usize ) -> Option<&mut (dyn Reflect + 'static)>
§fn index_of(&self, __name_param: &str) -> Option<usize>
fn index_of(&self, __name_param: &str) -> Option<usize>
§fn name_at(&self, __index_param: usize) -> Option<&str>
fn name_at(&self, __index_param: usize) -> Option<&str>
§fn iter_fields(&self) -> VariantFieldIter<'_> ⓘ
fn iter_fields(&self) -> VariantFieldIter<'_> ⓘ
§fn variant_name(&self) -> &str
fn variant_name(&self) -> &str
§fn variant_index(&self) -> usize
fn variant_index(&self) -> usize
§fn variant_type(&self) -> VariantType
fn variant_type(&self) -> VariantType
fn clone_dynamic(&self) -> DynamicEnum
§fn is_variant(&self, variant_type: VariantType) -> bool
fn is_variant(&self, variant_type: VariantType) -> bool
§fn variant_path(&self) -> String
fn variant_path(&self) -> String
§impl<A> ExtractInstance for AssetId<A>where
A: Asset,
impl<A> ExtractInstance for AssetId<A>where A: Asset,
§type Query = &'static Handle<A>
type Query = &'static Handle<A>
ReadOnlyWorldQueryData
to fetch the components to extract.§fn extract(
item: <<AssetId<A> as ExtractInstance>::Query as WorldQuery>::Item<'_>
) -> Option<AssetId<A>>
fn extract( item: <<AssetId<A> as ExtractInstance>::Query as WorldQuery>::Item<'_> ) -> Option<AssetId<A>>
§impl<A> From<AssetId<A>> for UntypedAssetIdwhere
A: Asset,
impl<A> From<AssetId<A>> for UntypedAssetIdwhere A: Asset,
§fn from(value: AssetId<A>) -> UntypedAssetId
fn from(value: AssetId<A>) -> UntypedAssetId
§impl<A> From<AssetIndex> for AssetId<A>where
A: Asset,
impl<A> From<AssetIndex> for AssetId<A>where A: Asset,
§fn from(value: AssetIndex) -> AssetId<A>
fn from(value: AssetIndex) -> AssetId<A>
§impl<A> FromReflect for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync + Default,
impl<A> FromReflect for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync + Default,
§fn from_reflect(__param0: &(dyn Reflect + 'static)) -> Option<AssetId<A>>
fn from_reflect(__param0: &(dyn Reflect + 'static)) -> Option<AssetId<A>>
Self
from a reflected value.§impl<A> GetTypeRegistration for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> GetTypeRegistration for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync,
§impl<A> Ord for AssetId<A>where
A: Asset,
impl<A> Ord for AssetId<A>where A: Asset,
§impl<A> PartialEq<AssetId<A>> for AssetId<A>where
A: Asset,
impl<A> PartialEq<AssetId<A>> for AssetId<A>where A: Asset,
§impl<A> PartialEq<AssetId<A>> for UntypedAssetIdwhere
A: Asset,
impl<A> PartialEq<AssetId<A>> for UntypedAssetIdwhere A: Asset,
§impl<A> PartialEq<UntypedAssetId> for AssetId<A>where
A: Asset,
impl<A> PartialEq<UntypedAssetId> for AssetId<A>where A: Asset,
§fn eq(&self, other: &UntypedAssetId) -> bool
fn eq(&self, other: &UntypedAssetId) -> bool
self
and other
values to be equal, and is used
by ==
.§impl<A> PartialOrd<AssetId<A>> for AssetId<A>where
A: Asset,
impl<A> PartialOrd<AssetId<A>> for AssetId<A>where A: Asset,
§fn partial_cmp(&self, other: &AssetId<A>) -> Option<Ordering>
fn partial_cmp(&self, other: &AssetId<A>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more§impl<A> PartialOrd<AssetId<A>> for UntypedAssetIdwhere
A: Asset,
impl<A> PartialOrd<AssetId<A>> for UntypedAssetIdwhere A: Asset,
§fn partial_cmp(&self, other: &AssetId<A>) -> Option<Ordering>
fn partial_cmp(&self, other: &AssetId<A>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more§impl<A> PartialOrd<UntypedAssetId> for AssetId<A>where
A: Asset,
impl<A> PartialOrd<UntypedAssetId> for AssetId<A>where A: Asset,
§fn partial_cmp(&self, other: &UntypedAssetId) -> Option<Ordering>
fn partial_cmp(&self, other: &UntypedAssetId) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more§impl<A> Reflect for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> Reflect for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync,
§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
§fn into_any(self: Box<AssetId<A>, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<AssetId<A>, Global>) -> Box<dyn Any, Global>
Box<dyn Any>
.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut dyn Any
.§fn into_reflect(self: Box<AssetId<A>, Global>) -> Box<dyn Reflect, Global>
fn into_reflect(self: Box<AssetId<A>, Global>) -> Box<dyn Reflect, Global>
§fn as_reflect(&self) -> &(dyn Reflect + 'static)
fn as_reflect(&self) -> &(dyn Reflect + 'static)
§fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
§fn clone_value(&self) -> Box<dyn Reflect, Global>
fn clone_value(&self) -> Box<dyn Reflect, Global>
Reflect
trait object. Read more§fn set(
&mut self,
__value_param: Box<dyn Reflect, Global>
) -> Result<(), Box<dyn Reflect, Global>>
fn set( &mut self, __value_param: Box<dyn Reflect, Global> ) -> Result<(), Box<dyn Reflect, Global>>
§fn apply(&mut self, __value_param: &(dyn Reflect + 'static))
fn apply(&mut self, __value_param: &(dyn Reflect + 'static))
§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
§fn reflect_owned(self: Box<AssetId<A>, Global>) -> ReflectOwned
fn reflect_owned(self: Box<AssetId<A>, Global>) -> ReflectOwned
§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
§fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
§impl<A> TryFrom<UntypedAssetId> for AssetId<A>where
A: Asset,
impl<A> TryFrom<UntypedAssetId> for AssetId<A>where A: Asset,
§type Error = UntypedAssetIdConversionError
type Error = UntypedAssetIdConversionError
§fn try_from(
value: UntypedAssetId
) -> Result<AssetId<A>, <AssetId<A> as TryFrom<UntypedAssetId>>::Error>
fn try_from( value: UntypedAssetId ) -> Result<AssetId<A>, <AssetId<A> as TryFrom<UntypedAssetId>>::Error>
§impl<A> TypePath for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> TypePath for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync,
§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
§impl<A> Typed for AssetId<A>where
A: Asset + TypePath,
AssetIndex: FromReflect + TypePath,
Uuid: FromReflect + TypePath,
PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> Typed for AssetId<A>where A: Asset + TypePath, AssetIndex: FromReflect + TypePath, Uuid: FromReflect + TypePath, PhantomData<fn() -> A>: Any + Send + Sync,
impl<A> Copy for AssetId<A>where A: Asset,
impl<A> Eq for AssetId<A>where A: Asset,
Auto Trait Implementations§
impl<A> RefUnwindSafe for AssetId<A>
impl<A> Send for AssetId<A>
impl<A> Sync for AssetId<A>
impl<A> Unpin for AssetId<A>
impl<A> UnwindSafe for AssetId<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
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
§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>
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>
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)
&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)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere T: TypePath,
§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
.§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
.§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
.§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
§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
§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
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
key
and return true
if they are equal.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given World
.§impl<T> GetPath for Twhere
T: Reflect + ?Sized,
impl<T> GetPath for Twhere T: Reflect + ?Sized,
§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>
) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p> ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>
) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§fn path<'p, T>(
&self,
path: impl ReflectPath<'p>
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
fn path<'p, T>( &self, path: impl ReflectPath<'p> ) -> Result<&T, ReflectPathError<'p>>where T: Reflect,
path
. Read more§fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
fn path_mut<'p, T>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut T, ReflectPathError<'p>>where T: Reflect,
path
. Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.