Trait basic_text::WriteText[][src]

pub trait WriteText: WriteStr {
    fn write_text(&mut self, buf: &TextStr) -> Result<()> { ... }
fn write_text_substr(&mut self, buf: &TextSubstr) -> Result<()> { ... } }
Expand description

Add a convenience method for reading into TextStr.

Provided methods

Like WriteStr::write_str but writes from a TextStr.

Like WriteStr::write_str but writes from a TextSubstr.

Implementors