Trait vimwiki::Output[][src]

pub trait Output {
    type Formatter;
    type Error;
    fn fmt(&self, f: &mut Self::Formatter) -> Result<(), Self::Error>;
}
Expand description

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

Associated Types

Required methods

Implementors