pub trait IntoModulationCache<M: Modulation> {
    // Required method
    fn with_cache(self) -> Cache<M>;
}

Required Methods§

source

fn with_cache(self) -> Cache<M>

Cache the result of calculation

Implementors§