pub trait Format<What> {
    fn fmt(&self, w: &What, f: &mut Formatter<'_>) -> Result;
}

Required Methods

Implementors