Trait Output

Source
pub trait Output {
    type Formatter;
    type Error;

    // Required method
    fn fmt(&self, f: &mut Self::Formatter) -> Result<(), Self::Error>;
}
Expand description

Represents the ability to convert some data into some other output form

Required Associated Types§

Required Methods§

Source

fn fmt(&self, f: &mut Self::Formatter) -> Result<(), Self::Error>

Implementors§