pub trait IntoConverter {
type Converter;
// Required method
fn into_converter(self) -> Self::Converter;
}
Expand description
Trait that implements the ability to convert to a converter type for conversion to a destination type.
pub trait IntoConverter {
type Converter;
// Required method
fn into_converter(self) -> Self::Converter;
}
Trait that implements the ability to convert to a converter type for conversion to a destination type.