pub trait Formattable: Debug + Clone + Copy + PartialEq + PartialOrd {
    const FORMAT: Format;
}

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Formattable for i8

source§

const FORMAT: Format = Format::Char

source§

impl Formattable for i16

source§

const FORMAT: Format = Format::Short

source§

impl Formattable for i64

source§

const FORMAT: Format = Format::Long

source§

impl Formattable for u8

source§

const FORMAT: Format = Format::Char

source§

impl Formattable for u16

source§

const FORMAT: Format = Format::Short

source§

impl Formattable for u64

source§

const FORMAT: Format = Format::Long

Implementors§