Trait tuplex::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§