Trait Converter

Source
pub trait Converter {
    type Output;

    // Required method
    fn convert(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn convert(self) -> Self::Output

Implementors§