Trait lrs::fmt::Display

Objects that can be formatted in a "display" form.

Syntax

trait Display {
    /* Required methods */
    fn fmt<W>(&self, w: &mut W) -> Result<(), Errno>
        where W: Write,
}

Methods

ReceiverNameDescription
&selffmt

Formats the object into the writer.