pub trait Fail { type Target; // Required method fn or_fail(self, reason: &'static str) -> Result<Self::Target, Error>; }