pub trait DisplayAs<F>where
    F: Format,
{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>; }
Expand description

This trait is analogous to Display, but will display the data in F format.

Required Methods

Formats the value using the given formatter.

Implementations on Foreign Types

Implementors