pub trait Memoized {
    type Output: Clone;

    // Required method
    fn field(&mut self) -> Option<&mut Self::Output>;
}

Required Associated Types§

Required Methods§

source

fn field(&mut self) -> Option<&mut Self::Output>

Implementors§