pub trait WriteChangeLine: Write {
    // Provided methods
    fn write_change_line(
        &mut self,
        pref: &str,
        contents: &str
    ) -> Result<(), Error> { ... }
    fn write_change_line_binary(
        &mut self,
        pref: &str,
        contents: &[u8]
    ) -> Result<(), Error> { ... }
}

Provided Methods§

source

fn write_change_line(&mut self, pref: &str, contents: &str) -> Result<(), Error>

source

fn write_change_line_binary( &mut self, pref: &str, contents: &[u8] ) -> Result<(), Error>

Implementations on Foreign Types§

source§

impl WriteChangeLine for &mut Vec<u8>

source§

impl WriteChangeLine for &mut Stderr

source§

impl WriteChangeLine for &mut Stdout

Implementors§