1 2 3 4 5 6
use std::fmt::Display; pub fn build_string<T: Display>(arg: T) -> String { format!("{}", arg) }