pub trait Memoized { type Output: Clone; // Required method fn field(&mut self) -> Option<&mut Self::Output>; }