pub trait uDisplay {
    fn fmt<W>(&self, _: &mut Formatter<'_, W>) -> Result<(), W::Error>
    where
        W: uWrite + ?Sized
; }
Expand description

Just like core::fmt::Display

Required Methods

Formats the value using the given formatter

Implementations on Foreign Types

Implementors