A trait for standard formatting, using the empty format ("").

Signature

pub trait Display

Examples

let word: ByteArray = "123";
println!("{}", word);

Trait functions

fmt

Signature

fn fmt(self: @T, ref f: Formatter) -> Result