Skip to main content

Cache

Struct Cache 

Source
pub struct Cache<T> { /* private fields */ }
Expand description

A simple cache that stores generated values to avoid recomputation.

Keeps track of the last generated value after clearing.

Implementations§

Source§

impl<T> Cache<T>

Source

pub fn new() -> Self

Creates a new empty Cache.

Source

pub fn with_group(group: Group) -> Self

Creates a new empty Cache with the given Group.

Caches within the same group may reuse internal rendering storage.

You should generally group caches that are likely to change together.

Source

pub fn group(&self) -> Group

Returns the Group of the Cache.

Source

pub fn put(&self, value: T)

Puts the given value in the Cache.

Notice that, given this is a cache, a mutable reference is not necessary to call this method. You can safely update the cache in rendering code.

Source

pub fn state(&self) -> &RefCell<State<T>>

Returns a reference cell to the internal State of the Cache.

Source

pub fn clear(&self)

Clears the Cache.

Trait Implementations§

Source§

impl<T> Debug for Cache<T>
where T: Debug,

Source§

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

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

impl<T> Default for Cache<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> !Freeze for Cache<T>

§

impl<T> !RefUnwindSafe for Cache<T>

§

impl<T> Send for Cache<T>
where T: Send,

§

impl<T> !Sync for Cache<T>

§

impl<T> Unpin for Cache<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Cache<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Cache<T>
where T: UnwindSafe,

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<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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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<T> MaybeSend for T
where T: Send,