Trait egui::util::cache::CacheTrait[][src]

pub trait CacheTrait: 'static + Send + Sync {
    fn update(&mut self);
fn len(&self) -> usize;
fn as_any_mut(&mut self) -> &mut dyn Any; }

Required methods

Call once per frame to evict cache.

Number of values currently in the cache.

Implementors