pub trait SingleUsage {
    fn usage<W: Write>(&self, writer: &mut W) -> Result<(), Error>;
}
Expand description

A single usage able to write itself to a Write.

Required Methods

Write self to the provided writer.

Implementations on Foreign Types

Implementors