[][src]Trait bracket::output::Output

pub trait Output: Write {
    pub fn write_str(&mut self, s: &str) -> Result<usize>;
}

Trait for types that we can render to.

Required methods

pub fn write_str(&mut self, s: &str) -> Result<usize>[src]

Convenience function as we are typically writing string slices.

Loading content...

Implementors

impl Output for StringOutput[src]

impl<W: Write> Output for Writer<W>[src]

Loading content...