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

Required Methods§

source

fn with_cache(self) -> Result<Cache, AUTDInternalError>

Cache the result of calculation

Implementors§

source§

impl<M: Modulation> IntoCache<M> for M