Struct str_stack::Writer
[−]
[src]
pub struct Writer<'a>(_);
Methods
impl<'a> Writer<'a>
[src]
Trait Implementations
impl<'a> Write for Writer<'a>
[src]
fn write_str(&mut self, s: &str) -> Result
[src]
Writes a slice of bytes into this writer, returning whether the write succeeded. Read more
fn write_char(&mut self, c: char) -> Result
[src]
Writes a [char
] into this writer, returning whether the write succeeded. Read more
fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>
1.0.0[src]
Glue for usage of the [write!
] macro with implementors of this trait. Read more