pub fn format(args: Arguments) -> String
The format function takes a precompiled format string and a list of arguments, to return the resulting formatted string.
format_args! macro.Basic usage:
use std::fmt;
let s = fmt::format(format_args!("Hello, {}!", "world"));
assert_eq!(s, "Hello, world!"); Please note that using format! might be preferrable. Example:
let s = format!("Hello, {}!", "world");
assert_eq!(s, "Hello, world!");
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/fmt/fn.format.html