Trait IntoConverter

Source
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.

Required Associated Types§

Source

type Converter

Converter type to go through when converting to the type being converted

Required Methods§

Implementors§