Convert

Trait Convert 

Source
pub trait Convert {
    type Output;

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

Converts to another type. The purpose of this trait is for implementing ConvertTuple.

Required Associated Types§

Required Methods§

Source

fn convert(self) -> Self::Output

Implementors§