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