Trait lrs::fmt::Debug

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

Syntax

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

Methods

ReceiverNameDescription
&selffmt

Formats the object into the writer.