vimwiki_core/lang/output/
mod.rs

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