pub trait SanityCheck { type Error; // Required method fn is_sane(&self) -> Result<(), Self::Error>; }