pub trait WriteBuffer {
// Required method
fn write_str(&mut self, s: &str) -> AzUtilResult<()>;
}Expand description
Minimal writable buffer trait
Required Methods§
Sourcefn write_str(&mut self, s: &str) -> AzUtilResult<()>
fn write_str(&mut self, s: &str) -> AzUtilResult<()>
Writes a &str into the buffer