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