Enum bones_asset::AssetKind 
source · pub enum AssetKind {
    Metadata {
        extension: String,
    },
    Custom {
        loader: Box<dyn AssetLoader>,
        extensions: Vec<String>,
    },
}Expand description
A [type data][bones_schema::alloc::TypeDatas] that indicates how to load a type as an asset.
Variants§
Metadata
This is a metadata asset that can be loaded from JSON or YAML files.
Fields
Custom
An asset with a custom asset loader.
Trait Implementations§
source§impl HasSchema for AssetKind
 
impl HasSchema for AssetKind
§fn register_schema()
 
fn register_schema()
Register this schema with the global schema registry. Read more
§fn cast<T>(this: &Self) -> &Twhere
    T: HasSchema,
 
fn cast<T>(this: &Self) -> &Twhere
    T: HasSchema,
Cast a reference of this type to a reference of another type with the same memory layout. Read more
§fn try_cast<T>(this: &Self) -> Result<&T, SchemaMismatchError>where
    T: HasSchema,
 
fn try_cast<T>(this: &Self) -> Result<&T, SchemaMismatchError>where
    T: HasSchema,
Cast a reference of this type to a reference of another type with the same memory layout. Read more
§fn cast_mut<T>(this: &mut Self) -> &mut Twhere
    T: HasSchema,
 
fn cast_mut<T>(this: &mut Self) -> &mut Twhere
    T: HasSchema,
Cast a mutable reference of this type to a reference of another type with the same memory
layout. Read more
§fn try_cast_mut<T>(this: &mut Self) -> Result<&mut T, SchemaMismatchError>where
    T: HasSchema,
 
fn try_cast_mut<T>(this: &mut Self) -> Result<&mut T, SchemaMismatchError>where
    T: HasSchema,
Cast a mutable reference of this type to a reference of another type with the same memory
layout. Read more
§fn as_schema_ref(&self) -> SchemaRef<'_>where
    Self: Sized,
 
fn as_schema_ref(&self) -> SchemaRef<'_>where
    Self: Sized,
Converts a reference of 
T to a SchemaRef§fn as_schema_mut(&mut self) -> SchemaRefMut<'_>where
    Self: Sized,
 
fn as_schema_mut(&mut self) -> SchemaRefMut<'_>where
    Self: Sized,
Converts a reference of 
T to a SchemaRefMutAuto Trait Implementations§
impl Freeze for AssetKind
impl !RefUnwindSafe for AssetKind
impl Send for AssetKind
impl Sync for AssetKind
impl Unpin for AssetKind
impl !UnwindSafe for AssetKind
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