pub struct AnyCache<'a> {
    cache: &'a dyn Cache,
}
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.

Fields§

§cache: &'a dyn Cache

Implementations§

§

impl<'a> AnyCache<'a>

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

The Source from which assets are loaded.

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

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

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

Loads an asset and panic if an error happens.

Panics

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

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

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.

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

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.

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

Returns true if the cache contains the specified asset.

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

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.

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

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.

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

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.

pub fn no_record<T, F>(self, f: F) -> T
where F: FnOnce() -> 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.

pub fn is_hot_reloaded(self) -> bool

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

Trait Implementations§

§

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

§

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

Converts this type to an AnyCache.
source§

impl<'a> CacheCombined<'a> for AnyCache<'a>

source§

fn load_and_combine<A: Compound + Concatenate>( self, specifier: &str ) -> Result<&'a Handle<A>, Error>

§

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

§

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
§

impl Debug for AnyCache<'_>

§

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

Formats the value using the given formatter. Read more
§

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

Auto Trait Implementations§

§

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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> 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more