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
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.