Trait nom::lib::std::fmt::Display1.0.0[][src]

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

Format trait for an empty format, {}.

Display is similar to Debug, but Display is for user-facing output, and so cannot be derived.

For more information on formatters, see the module-level documentation.

Examples

Implementing Display on a type:

use std::fmt;

struct Point {
    x: i32,
    y: i32,
}

impl fmt::Display for Point {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {})", self.x, self.y)
    }
}

let origin = Point { x: 0, y: 0 };

assert_eq!(format!("The origin is: {}", origin), "The origin is: (0, 0)");

Required methods

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter.

Examples

use std::fmt;

struct Position {
    longitude: f32,
    latitude: f32,
}

impl fmt::Display for Position {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {})", self.longitude, self.latitude)
    }
}

assert_eq!("(1.987, 2.983)",
           format!("{}", Position { longitude: 1.987, latitude: 2.983, }));
Loading content...

Implementations on Foreign Types

impl Display for SocketAddrV4[src]

impl Display for ExitStatus[src]

impl<'_, T> Display for RwLockWriteGuard<'_, T> where
    T: Display + ?Sized
[src]

impl Display for FromBytesWithNulError[src]

impl Display for SocketAddrV6[src]

impl Display for Ipv4Addr[src]

impl<T> Display for TrySendError<T>[src]

impl Display for TryRecvError[src]

impl<'_> Display for Display<'_>[src]

impl<T> Display for SendError<T>[src]

impl Display for RecvError[src]

impl Display for Backtrace[src]

impl<'_, T> Display for MutexGuard<'_, T> where
    T: Display + ?Sized
[src]

impl Display for StripPrefixError[src]

impl Display for IpAddr[src]

impl Display for AddrParseError[src]

impl Display for SystemTimeError[src]

impl Display for Ipv6Addr[src]

Write an Ipv6Addr, conforming to the canonical style described by RFC 5952.

impl Display for NulError[src]

impl Display for VarError[src]

impl Display for JoinPathsError[src]

impl Display for RecvTimeoutError[src]

impl Display for AccessError[src]

impl Display for SocketAddr[src]

impl<T> Display for TryLockError<T>[src]

impl<W> Display for IntoInnerError<W>[src]

impl<T> Display for PoisonError<T>[src]

impl Display for IntoStringError[src]

impl Display for Error[src]

impl Display for FromVecWithNulError[src]

impl<'_, T> Display for RwLockReadGuard<'_, T> where
    T: Display + ?Sized
[src]

impl Display for ParseCharError[src]

impl Display for EscapeDefault[src]

impl Display for i32[src]

impl<'_> Display for PanicInfo<'_>[src]

impl Display for NonZeroI64[src]

impl Display for u64[src]

impl Display for NonZeroU8[src]

impl<P> Display for Pin<P> where
    P: Display
[src]

impl<'_, T> Display for Ref<'_, T> where
    T: Display + ?Sized
[src]

impl Display for i64[src]

impl Display for i16[src]

impl Display for ParseIntError[src]

impl Display for EscapeDebug[src]

impl<'_, T> Display for &'_ T where
    T: Display + ?Sized
[src]

impl Display for f32[src]

impl Display for i128[src]

impl<T> Display for Wrapping<T> where
    T: Display
[src]

impl Display for usize[src]

impl Display for CharTryFromError[src]

impl Display for NonZeroU128[src]

impl Display for u16[src]

impl Display for ToLowercase[src]

impl Display for str[src]

impl Display for TryFromSliceError[src]

impl Display for NonZeroI32[src]

impl Display for NonZeroU64[src]

impl<'_> Display for Location<'_>[src]

impl Display for isize[src]

impl Display for NonZeroI16[src]

impl<'_, T> Display for &'_ mut T where
    T: Display + ?Sized
[src]

impl Display for u8[src]

impl Display for DecodeUtf16Error[src]

impl Display for NonZeroU16[src]

impl Display for ![src]

impl Display for char[src]

impl Display for NonZeroIsize[src]

impl Display for NonZeroI128[src]

impl Display for NonZeroUsize[src]

impl Display for ToUppercase[src]

impl Display for ParseFloatError[src]

impl Display for TryFromIntError[src]

impl<'_, T> Display for RefMut<'_, T> where
    T: Display + ?Sized
[src]

impl Display for u32[src]

impl Display for BorrowError[src]

impl Display for f64[src]

impl Display for bool[src]

impl Display for EscapeDefault[src]

impl Display for NonZeroI8[src]

impl Display for Utf8Lossy[src]

impl Display for u128[src]

impl Display for NonZeroU32[src]

impl Display for i8[src]

impl Display for EscapeUnicode[src]

impl Display for BorrowMutError[src]

impl<T> Display for Arc<T> where
    T: Display + ?Sized
[src]

impl<T> Display for Rc<T> where
    T: Display + ?Sized
[src]

impl<R> Display for BitPos<R> where
    R: BitRegister
[src]

impl<R> Display for BitSel<R> where
    R: BitRegister
[src]

impl<O, T> Display for BitVec<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T> Display for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<R> Display for BitTail<R> where
    R: BitRegister
[src]

impl<O, T> Display for BitBox<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, V> Display for BitArray<O, V> where
    O: BitOrder,
    V: BitView
[src]

impl<R> Display for BitIdx<R> where
    R: BitRegister
[src]

impl<R> Display for BitMask<R> where
    R: BitRegister
[src]

impl<T> Display for FmtPointer<T> where
    T: Display + Pointer

impl<T> Display for FmtOctal<T> where
    T: Display + Octal

impl<T> Display for FmtLowerExp<T> where
    T: Display + LowerExp

impl<T> Display for FmtDisplay<T> where
    T: Display

impl<T> Display for FmtUpperHex<T> where
    T: Display + UpperHex

impl<T> Display for FmtBinary<T> where
    T: Display + Binary

impl<T> Display for FmtUpperExp<T> where
    T: Display + UpperExp

impl<T> Display for FmtLowerHex<T> where
    T: Display + LowerHex

impl<A> Display for ArrayString<A> where
    A: Array<Item = u8> + Copy
[src]

impl<T> Display for CapacityError<T>[src]

impl Display for Error[src]

impl Display for Regex[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Shows the original regular expression.

impl Display for Regex[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Shows the original regular expression.

impl Display for Error

impl Display for Ast

Print a display representation of this Ast.

This does not preserve any of the original whitespace formatting that may have originally been present in the concrete syntax from which this Ast was generated.

This implementation uses constant stack space and heap space proportional to the size of the Ast.

impl Display for Hir

Print a display representation of this Hir.

The result of this is a valid regular expression pattern string.

This implementation uses constant stack space and heap space proportional to the size of the Hir.

impl Display for Error

impl Display for CaseFoldError

impl Display for Error

impl Display for ErrorKind

impl Display for ErrorKind

impl Display for UnicodeWordError

impl Display for Error

Loading content...

Implementors

impl Display for TryReserveError[src]

impl Display for Infallible1.34.0[src]

impl Display for AllocError[src]

impl Display for LayoutError1.28.0[src]

impl Display for nom::lib::std::fmt::Error[src]

impl Display for ParseBoolError[src]

impl Display for Utf8Error[src]

impl Display for FromUtf8Error[src]

impl Display for FromUtf16Error[src]

impl Display for String[src]

impl<'_> Display for Arguments<'_>[src]

impl<'_, B> Display for Cow<'_, B> where
    B: Display + ToOwned + ?Sized,
    <B as ToOwned>::Owned: Display
[src]

impl<'a> Display for nom::lib::std::str::EscapeDebug<'a>1.34.0[src]

impl<'a> Display for nom::lib::std::str::EscapeDefault<'a>1.34.0[src]

impl<'a> Display for nom::lib::std::str::EscapeUnicode<'a>1.34.0[src]

impl<E> Display for Err<E> where
    E: Debug
[src]

impl<I: Display> Display for nom::error::Error<I>[src]

The Display implementation allows the std::error::Error implementation

impl<I: Display> Display for VerboseError<I>[src]

impl<T, A> Display for Box<T, A> where
    T: Display + ?Sized,
    A: Allocator
[src]

Loading content...