StringWrite

Trait StringWrite 

Source
pub trait StringWrite: ErrorType {
    // Required method
    fn write_string(
        &mut self,
        data: &str,
    ) -> (usize, Result<(), <Self as ErrorType>::Error>);
}

Required Methods§

Source

fn write_string( &mut self, data: &str, ) -> (usize, Result<(), <Self as ErrorType>::Error>)

Implementors§

Source§

impl<T: Write> StringWrite for T