pub trait DisplayRaw {
    fn fmt_raw(this: Ref<'_, Self>, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description

Format trait for an empty format, {}.

Required Methods

Formats the value using the given formatter.

Implementors