pub trait uDisplay {
// Required method
fn fmt<W>(
&self,
_: &mut Formatter<'_, W>
) -> Result<(), <W as uWrite>::Error>
where W: uWrite + ?Sized;
}
Expand description
Just like core::fmt::Display
pub trait uDisplay {
// Required method
fn fmt<W>(
&self,
_: &mut Formatter<'_, W>
) -> Result<(), <W as uWrite>::Error>
where W: uWrite + ?Sized;
}
Just like core::fmt::Display