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