pub trait Convertible<T> {
    fn convert(self) -> T;
}

Required Methods

Implementors