Macro runtime_fmt::rt_format [] [src]

macro_rules! rt_format {
    ($($rest:tt)*) => { ... };
}

Format a value of type String with a runtime format string.

The format string should be any type coercible to an &str, and will not be consumed.

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