1#[cfg(feature = "html")]
2mod html;
34#[cfg(feature = "html")]
5pub use html::*;
67/// Represents the ability to convert some data into some other output form
8pub trait Output {
9type Formatter;
10type Error;
1112fn fmt(&self, f: &mut Self::Formatter) -> Result<(), Self::Error>;
13}