[][src]Macro runtime_fmt::rt_write

macro_rules! rt_write {
    ($dest:expr, $($rest:tt)*) => { ... };
}

Write runtime-formatted data into a buffer.

Like write!, implementations of either std::fmt::Write or std::io::Write are accepted. Error variants of the appropriate type may be returned.

Returns a Result<(), Error>. See the module-level docs for more information.