pub trait Convert<T>: Sized {
    fn convert(self) -> T;
}

Required Methods

Implementations on Foreign Types

Implementors