Function collections::fmt::format1.0.0 [] [src]

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.

Arguments

Examples

Basic usage:

fn main() { use std::fmt; let s = fmt::format(format_args!("Hello, {}!", "world")); assert_eq!(s, "Hello, world!"); }
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:

fn main() { let s = format!("Hello, {}!", "world"); assert_eq!(s, "Hello, world!"); }
let s = format!("Hello, {}!", "world");
assert_eq!(s, "Hello, world!");