[go: up one dir, main page]

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

pub trait ComputerMut<Key, Value>: 'static + Send + Sync {
    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

Implementors