Display

Trait Display 

Source
pub trait Display {
    // Required method
    fn bfmt(&self, f: &mut Formatter) -> Result;
}
Expand description

Displays a value using a formatter.

Required Methods§

Source

fn bfmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

Implementations on Foreign Types§

Source§

impl Display for IpAddr

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for SocketAddr

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for bool

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for char

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for f32

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for f64

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for i8

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for i16

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for i32

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for i64

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for isize

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for str

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for u8

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for u16

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for u32

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for u64

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for usize

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for String

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for ToLowercase

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for ToUppercase

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for Ipv4Addr

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for Ipv6Addr

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for SocketAddrV4

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for SocketAddrV6

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl Display for [u8]

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<'a> Display for Arguments<'a>

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<'a, T> Display for Cow<'a, T>
where T: Display + ToOwned + ?Sized, <T as ToOwned>::Owned: Display,

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<'a, T: ?Sized + Display> Display for &'a T

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<'a, T: ?Sized + Display> Display for &'a mut T

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<T: Display> Display for Wrapping<T>

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<T: ?Sized + Display> Display for Box<T>

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<T: ?Sized + Display> Display for Rc<T>

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Source§

impl<T: ?Sized + Display> Display for Arc<T>

Source§

fn bfmt(&self, f: &mut Formatter) -> Result

Implementors§

Source§

impl Display for BString

Source§

impl Display for bstr

Source§

impl<'a> Display for bstring::bfmt::Arguments<'a>