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

Just like core::fmt::Debug

Required methods

Formats the value using the given formatter

Implementations on Foreign Types

Implementors