macro_rules! swrite { ($dst:expr, $($arg:tt)*) => { ... }; }
Write formatted text to the given String.
String
use swrite::{SWrite, swrite}; let mut s = String::new(); swrite!(s, "The answer is {}.", 42);