pub trait ToAny { type Any; // Required methods fn any(&self) -> Self::Any; fn into_any(self) -> Self::Any; }