Struct fast_fmt::transform::Transformer [] [src]

pub struct Transformer<T: Transform, W: Write> { /* fields omitted */ }

Transformation attached to a writer, transforming everything written into the writer.

Methods

impl<T: Transform, W: Write> Transformer<T, W>
[src]

Attaches transformation to the writer.

Trait Implementations

impl<T: Transform, W: Write> Write for Transformer<T, W>
[src]

Type of error returned if write fails.

Writes single char. Read more

Writes whole string. Read more

Hints that implementor should allocate enough space so that string containing bytes UTF-8 bytes can be stored in it. Read more

Tells the user whether the size hint is actually used. This allows the user to skip calculation of the hint. Read more

Combinator for creating transformed writer.