Display
A trait for standard formatting, using the empty format ("{}"). # Examples
let word: ByteArray = "123";
println!("{}", word);
Fully qualified path: core::fmt::Display
pub trait Display<T>
Trait functions
fmt
Fully qualified path: core::fmt::Display::fmt
fn fmt(self: @T, ref f: Formatter) -> Result<(), Error>