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§

fn fmt<W>(&self, _: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

Formats the value using the given formatter

Implementations on Foreign Types§

§

impl uDisplay for i8

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for i64

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for char

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroIsize

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroI16

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl<T> uDisplay for &mut Twhere
T: uDisplay + ?Sized,

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for u8

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for i16

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for u16

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for i128

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroU16

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for str

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl<T> uDisplay for &Twhere
T: uDisplay + ?Sized,

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroU8

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroI8

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for bool

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for u32

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroI32

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for u64

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for isize

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for i32

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for usize

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroU64

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for u128

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroI64

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroU32

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

§

impl uDisplay for NonZeroUsize

§

fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), <W as uWrite>::Error>where
W: uWrite + ?Sized,

Implementors§