Struct assets_manager::AnyCache

source ·
pub struct AnyCache<'a> { /* private fields */ }
Expand description

A non-generic version of AssetCache.

For most purposes, this can be used exactly like an AssetCache: you can load assets from it.

Unlike AssetCache this type is not generic, which is useful to make nicer APIs.

Implementations§

source§

impl<'a> AnyCache<'a>

source

pub fn raw_source(self) -> impl Source + 'a

The Source from which assets are loaded.

source

pub fn load<T: Compound>(self, id: &str) -> Result<&'a Handle<T>, Error>

Loads an asset.

If the asset is not found in the cache, it is loaded from the source.

§Errors

Errors for Assets can occur in several cases :

  • The source could not be read
  • Loaded data could not be converted properly
  • The asset has no extension
source

pub fn load_expect<T: Compound>(self, id: &str) -> &'a Handle<T>

Loads an asset and panic if an error happens.

§Panics

Panics if an error happens while loading the asset (see load).

source

pub fn get_cached<T: Storable>(self, id: &str) -> Option<&'a Handle<T>>

Gets a value from the cache.

The value does not have to be an asset, but if it is not, its type must be marked with the Storable trait.

This function does not attempt to load the value from the source if it is not found in the cache.

source

pub fn get_or_insert<T: Storable>(self, id: &str, default: T) -> &'a Handle<T>

Gets a value from the cache or inserts one.

As for get_cached, non-assets types must be marked with Storable.

Assets added via this function will never be reloaded.

source

pub fn contains<T: Storable>(self, id: &str) -> bool

Returns true if the cache contains the specified asset.

source

pub fn load_dir<T: DirLoadable>( self, id: &str ) -> Result<&'a Handle<Directory<T>>, Error>

Loads a directory.

The directory’s id is constructed the same way as assets. To specify the cache’s root, give the empty string ("") as id.

Note that this function only gets the ids of assets, and that are not actually loaded. The returned handle can be use to iterate over them.

§Errors

An error is returned if the given id does not match a valid readable directory.

source

pub fn load_rec_dir<T: DirLoadable>( self, id: &str ) -> Result<&'a Handle<RecursiveDirectory<T>>, Error>

Loads a directory and its subdirectories.

The directory’s id is constructed the same way as assets. To specify the cache’s root, give the empty string ("") as id.

Note that this function only gets the ids of assets, and that are not actually loaded. The returned handle can be use to iterate over them.

§Errors

An error is returned if the given id does not match a valid readable directory.

When loading a directory recursively, directories that can’t be read are ignored.

source

pub fn load_owned<T: Compound>(self, id: &str) -> Result<T, Error>

Loads an owned version of an asset.

Note that the asset will not be fetched from the cache nor will it be cached. In addition, hot-reloading does not affect the returned value (if used during Compound::load. It will still be registered as a dependency).

This can be useful if you need ownership on a non-clonable value.

source

pub fn no_record<T, F: FnOnce() -> T>(self, f: F) -> T

Temporarily prevent Compound dependencies to be recorded.

This function disables dependencies recording in Compound::load. Assets loaded during the given closure will not be recorded as dependencies and the currently loading asset will not be reloaded when they are.

When hot-reloading is disabled or if the cache’s Source does not support hot-reloading, this function only returns the result of the closure given as parameter.

source

pub fn is_hot_reloaded(self) -> bool

Returns true if values stored in this cache may be hot-reloaded.

Trait Implementations§

source§

impl<'a> AsAnyCache<'a> for AnyCache<'a>

source§

fn as_any_cache(&self) -> AnyCache<'a>

Converts this type to an AnyCache.
source§

impl<'a> Clone for AnyCache<'a>

source§

fn clone(&self) -> AnyCache<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AnyCache<'_>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Copy for AnyCache<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for AnyCache<'a>

§

impl<'a> !RefUnwindSafe for AnyCache<'a>

§

impl<'a> !Send for AnyCache<'a>

§

impl<'a> !Sync for AnyCache<'a>

§

impl<'a> Unpin for AnyCache<'a>

§

impl<'a> !UnwindSafe for AnyCache<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<S> FromSample<S> for S

source§

fn from_sample_(s: S) -> S

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

source§

fn to_sample_(self) -> U

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,