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