Struct escapade::EscapedWriter [] [src]

pub struct EscapedWriter<T: Write> { /* fields omitted */ }

A wrapper for writer automatically escaping text written to it

Methods

impl<T: Write> EscapedWriter<T>
[src]

Create a new EscapedWriter

Consume the writer, returning the wrapped value

Trait Implementations

impl<X: AsRef<str>, W: Write> EscapedWrite<Escaped<X>> for EscapedWriter<W>
[src]

Write the passed string-like value to the writer, returning the writers Result. Read more

impl<'a, X: Escapable, W: Write> EscapedWrite<X> for EscapedWriter<W>
[src]

Write the passed string-like value to the writer, returning the writers Result. Read more