pub trait ConvertToFmt {
    type Writer: Write;

    fn convert(self) -> Self::Writer;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors