pub trait Memoize { type Value: PartialEq + 'static; // Required method fn memoized(self) -> Self::Value; }