Trait egui::util::cache::ComputerMut

source ·
pub trait ComputerMut<Key, Value>: 'static + Send + Sync {
    // Required method
    fn compute(&mut self, key: Key) -> Value;
}
Expand description

Something that does an expensive computation that we want to cache to save us from recomputing it each frame.

Required Methods§

source

fn compute(&mut self, key: Key) -> Value

Implementors§