pub trait Output { type Formatter; type Error; // Required method fn fmt(&self, f: &mut Self::Formatter) -> Result<(), Self::Error>; }
Represents the ability to convert some data into some other output form