Trait Display

1.6.0 · Source
pub trait Display {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description

Format trait for an empty format, {}.

Implementing this trait for a type will automatically implement the ToString trait for the type, allowing the usage of the .to_string() method. Prefer implementing the Display trait for a type, rather than ToString.

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.

§Completeness and parseability

Display for a type might not necessarily be a lossless or complete representation of the type. It may omit internal state, precision, or other information the type does not consider important for user-facing output, as determined by the type. As such, the output of Display might not be possible to parse, and even if it is, the result of parsing might not exactly match the original value.

However, if a type has a lossless Display implementation whose output is meant to be conveniently machine-parseable and not just meant for human consumption, then the type may wish to accept the same format in FromStr, and document that usage. Having both Display and FromStr implementations where the result of Display cannot be parsed with FromStr may surprise users.

§Internationalization

Because a type can only have one Display implementation, it is often preferable to only implement Display when there is a single most “obvious” way that values can be formatted as text. This could mean formatting according to the “invariant” culture and “undefined” locale, or it could mean that the type display is designed for a specific culture/locale, such as developer logs.

If not all values have a justifiably canonical textual format or if you want to support alternative formats not covered by the standard set of possible formatting traits, the most flexible approach is display adapters: methods like str::escape_default or Path::display which create a wrapper implementing Display to output the specific display format.

§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§

1.0.0 · Source

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

Formats the value using the given formatter.

§Errors

This function should return Err if, and only if, the provided Formatter returns Err. String formatting is considered an infallible operation; this function only returns a Result because writing to the underlying stream might fail and it must provide a way to propagate the fact that an error has occurred back up the stack.

§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, }),
);

Implementors§

Source§

impl Display for chaos_framework::Error

Source§

impl Display for InitError

Source§

impl Display for StyleColor

Source§

impl Display for AsciiChar

1.34.0 · Source§

impl Display for Infallible

1.17.0 · Source§

impl Display for FromBytesWithNulError

1.7.0 · Source§

impl Display for IpAddr

1.0.0 · Source§

impl Display for SocketAddr

1.86.0 · Source§

impl Display for GetDisjointMutError

1.0.0 · Source§

impl Display for VarError

1.89.0 · Source§

impl Display for std::fs::TryLockError

1.60.0 · Source§

impl Display for ErrorKind

1.15.0 · Source§

impl Display for RecvTimeoutError

1.0.0 · Source§

impl Display for TryRecvError

Source§

impl Display for HuffmanTreeError

Source§

impl Display for CheckedCastError

Source§

impl Display for PodCastError

Source§

impl Display for Compression

Source§

impl Display for exr::error::Error

Source§

impl Display for gif::encoder::EncodingError

Source§

impl Display for EncodingFormatError

Source§

impl Display for gif::reader::decoder::DecodingError

Source§

impl Display for image_webp::decoder::DecodingError

Source§

impl Display for image_webp::encoder::EncodingError

Source§

impl Display for ImageError

Source§

impl Display for ImageFormatHint

Source§

impl Display for image::flat::Error

Source§

impl Display for jpeg_decoder::error::Error

Source§

impl Display for Level

Source§

impl Display for LevelFilter

Source§

impl Display for BlendOp

Source§

impl Display for DisposeOp

Source§

impl Display for png::decoder::stream::DecodingError

Source§

impl Display for png::encoder::EncodingError

Source§

impl Display for qoi::error::Error

Source§

impl Display for BernoulliError

Source§

impl Display for WeightedError

Source§

impl Display for ColorPrimaries

Source§

impl Display for MatrixCoefficients

Source§

impl Display for PixelRange

Source§

impl Display for TransferCharacteristics

Source§

impl Display for InvalidConfig

Source§

impl Display for rav1e::api::config::rate::Error

Source§

impl Display for PredictionModesSetting

Source§

impl Display for SGRComplexityLevel

Source§

impl Display for SceneDetectionSpeed

Source§

impl Display for SegmentationLevel

Source§

impl Display for EncoderStatus

Source§

impl Display for FrameType

Source§

impl Display for CpuFeatureLevel

Source§

impl Display for Tune

Source§

impl Display for BlockSize

Source§

impl Display for ravif::error::Error

Source§

impl Display for HandleError

Source§

impl Display for CollectionAllocErr

Source§

impl Display for TiffError

Source§

impl Display for TiffFormatError

Source§

impl Display for TiffUnsupportedError

Source§

impl Display for UsageError

Source§

impl Display for LoadError

Source§

impl Display for ChromaSampling

Source§

impl Display for LzwError

Source§

impl Display for BigEndian

Source§

impl Display for LittleEndian

Source§

impl Display for DecodeErrors

1.0.0 · Source§

impl Display for bool

1.0.0 · Source§

impl Display for char

1.0.0 · Source§

impl Display for f16

1.0.0 · Source§

impl Display for f32

1.0.0 · Source§

impl Display for f64

1.0.0 · Source§

impl Display for i8

1.0.0 · Source§

impl Display for i16

1.0.0 · Source§

impl Display for i32

1.0.0 · Source§

impl Display for i64

1.0.0 · Source§

impl Display for i128

1.0.0 · Source§

impl Display for isize

Source§

impl Display for !

1.0.0 · Source§

impl Display for str

1.0.0 · Source§

impl Display for u8

1.0.0 · Source§

impl Display for u16

1.0.0 · Source§

impl Display for u32

1.0.0 · Source§

impl Display for u64

1.0.0 · Source§

impl Display for u128

1.0.0 · Source§

impl Display for usize

Source§

impl Display for PayloadIsWrongType

Source§

impl Display for Affine2

Source§

impl Display for Affine3A

Source§

impl Display for BVec2

Source§

impl Display for BVec3

Source§

impl Display for BVec3A

Source§

impl Display for BVec4

Source§

impl Display for BVec4A

Source§

impl Display for DAffine2

Source§

impl Display for DAffine3

Source§

impl Display for DMat2

Source§

impl Display for DMat3

Source§

impl Display for DMat4

Source§

impl Display for DQuat

Source§

impl Display for DVec2

Source§

impl Display for DVec3

Source§

impl Display for DVec4

Source§

impl Display for I16Vec2

Source§

impl Display for I16Vec3

Source§

impl Display for I16Vec4

Source§

impl Display for I64Vec2

Source§

impl Display for I64Vec3

Source§

impl Display for I64Vec4

Source§

impl Display for IVec2

Source§

impl Display for IVec3

Source§

impl Display for IVec4

Source§

impl Display for ImStr

Source§

impl Display for ImString

Source§

impl Display for InvalidStyleColorValue

Source§

impl Display for Mat2

Source§

impl Display for Mat3

Source§

impl Display for Mat3A

Source§

impl Display for Mat4

Source§

impl Display for Quat

Source§

impl Display for U16Vec2

Source§

impl Display for U16Vec3

Source§

impl Display for U16Vec4

Source§

impl Display for U64Vec2

Source§

impl Display for U64Vec3

Source§

impl Display for U64Vec4

Source§

impl Display for UVec2

Source§

impl Display for UVec3

Source§

impl Display for UVec4

Source§

impl Display for Vec2

Source§

impl Display for Vec3

Source§

impl Display for Vec3A

Source§

impl Display for Vec4

Source§

impl Display for AllocError

1.28.0 · Source§

impl Display for LayoutError

1.35.0 · Source§

impl Display for TryFromSliceError

1.39.0 · Source§

impl Display for chaos_framework::__core::ascii::EscapeDefault

Source§

impl Display for ByteStr

1.13.0 · Source§

impl Display for BorrowError

1.13.0 · Source§

impl Display for BorrowMutError

1.34.0 · Source§

impl Display for CharTryFromError

1.9.0 · Source§

impl Display for DecodeUtf16Error

1.20.0 · Source§

impl Display for chaos_framework::__core::char::EscapeDebug

1.16.0 · Source§

impl Display for chaos_framework::__core::char::EscapeDefault

1.16.0 · Source§

impl Display for chaos_framework::__core::char::EscapeUnicode

1.20.0 · Source§

impl Display for ParseCharError

1.16.0 · Source§

impl Display for ToLowercase

1.16.0 · Source§

impl Display for ToUppercase

1.59.0 · Source§

impl Display for TryFromCharError

1.69.0 · Source§

impl Display for FromBytesUntilNulError

1.4.0 · Source§

impl Display for AddrParseError

1.0.0 · Source§

impl Display for Ipv4Addr

1.0.0 · Source§

impl Display for Ipv6Addr

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

1.0.0 · Source§

impl Display for SocketAddrV4

1.0.0 · Source§

impl Display for SocketAddrV6

1.0.0 · Source§

impl Display for chaos_framework::__core::num::ParseFloatError

1.0.0 · Source§

impl Display for ParseIntError

1.34.0 · Source§

impl Display for TryFromIntError

1.26.0 · Source§

impl Display for Location<'_>

1.26.0 · Source§

impl Display for PanicInfo<'_>

1.81.0 · Source§

impl Display for PanicMessage<'_>

1.0.0 · Source§

impl Display for ParseBoolError

1.0.0 · Source§

impl Display for Utf8Error

1.66.0 · Source§

impl Display for TryFromFloatSecsError

Source§

impl Display for ByteString

Source§

impl Display for UnorderedKeyError

1.57.0 · Source§

impl Display for TryReserveError

1.58.0 · Source§

impl Display for FromVecWithNulError

1.7.0 · Source§

impl Display for IntoStringError

1.0.0 · Source§

impl Display for NulError

1.0.0 · Source§

impl Display for FromUtf8Error

1.0.0 · Source§

impl Display for FromUtf16Error

1.0.0 · Source§

impl Display for String

1.65.0 · Source§

impl Display for Backtrace

1.0.0 · Source§

impl Display for JoinPathsError

1.87.0 · Source§

impl Display for std::ffi::os_str::Display<'_>

1.56.0 · Source§

impl Display for WriterPanicked

1.0.0 · Source§

impl Display for std::io::error::Error

1.26.0 · Source§

impl Display for PanicHookInfo<'_>

1.0.0 · Source§

impl Display for std::path::Display<'_>

Source§

impl Display for NormalizeError

1.7.0 · Source§

impl Display for StripPrefixError

1.0.0 · Source§

impl Display for ExitStatus

Source§

impl Display for ExitStatusError

1.0.0 · Source§

impl Display for RecvError

1.26.0 · Source§

impl Display for AccessError

1.8.0 · Source§

impl Display for SystemTimeError

Source§

impl Display for anyhow::Error

Source§

impl Display for Text

Source§

impl Display for CompressError

Source§

impl Display for flate2::mem::DecompressError

Source§

impl Display for getrandom::error::Error

Source§

impl Display for getrandom::error::Error

Source§

impl Display for DecodingFormatError

Source§

impl Display for bf16

Source§

impl Display for f16

Source§

impl Display for image::error::DecodingError

Source§

impl Display for image::error::EncodingError

Source§

impl Display for LimitError

Source§

impl Display for image::error::ParameterError

Source§

impl Display for UnsupportedError

Source§

impl Display for ParseLevelError

Source§

impl Display for SetLoggerError

Source§

impl Display for miniz_oxide::inflate::DecompressError

Source§

impl Display for BigInt

Source§

impl Display for BigUint

Source§

impl Display for ParseBigIntError

Source§

impl Display for ParseRatioError

Source§

impl Display for num_traits::ParseFloatError

Source§

impl Display for png::common::ParameterError

Source§

impl Display for ReadError

Source§

impl Display for rand_core::error::Error

Source§

impl Display for EncoderConfig

Source§

impl Display for ThreadPoolBuildError

Source§

impl Display for InflateDecodeErrors

1.0.0 · Source§

impl Display for Arguments<'_>

1.0.0 · Source§

impl Display for chaos_framework::__core::fmt::Error

1.60.0 · Source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · Source§

impl<'a> Display for chaos_framework::__core::str::EscapeDebug<'a>

1.34.0 · Source§

impl<'a> Display for chaos_framework::__core::str::EscapeDefault<'a>

1.34.0 · Source§

impl<'a> Display for chaos_framework::__core::str::EscapeUnicode<'a>

Source§

impl<'a, I> Display for Format<'a, I>
where I: Iterator, <I as Iterator>::Item: Display,

Source§

impl<'a, I, F> Display for FormatWith<'a, I, F>
where I: Iterator, F: FnMut(<I as Iterator>::Item, &mut dyn FnMut(&dyn Display) -> Result<(), Error>) -> Result<(), Error>,

Source§

impl<'a, K, V> Display for std::collections::hash::map::OccupiedError<'a, K, V>
where K: Debug, V: Debug,

Source§

impl<'a, K, V, A> Display for alloc::collections::btree::map::entry::OccupiedError<'a, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

impl<'a, R, G, T> Display for MappedReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, G, T> Display for ReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::mutex::MappedMutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::mutex::MutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::rwlock::RwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for RwLockUpgradableReadGuard<'a, R, T>
where R: RawRwLockUpgrade + 'a, T: Display + 'a + ?Sized,

Source§

impl<'a, R, T> Display for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Display + 'a + ?Sized,

Source§

impl<A, S, V> Display for ConvertError<A, S, V>
where A: Display, S: Display, V: Display,

Produces a human-readable error message.

The message differs between debug and release builds. When debug_assertions are enabled, this message is verbose and includes potentially sensitive information.

1.0.0 · Source§

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

Source§

impl<E> Display for Err<E>
where E: Debug,

Source§

impl<E> Display for Report<E>
where E: Error,

Source§

impl<F> Display for FromFn<F>
where F: Fn(&mut Formatter<'_>) -> Result<(), Error>,

Source§

impl<I> Display for ExactlyOneError<I>
where I: Iterator,

Source§

impl<I> Display for nom::error::Error<I>
where I: Display,

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

Source§

impl<I> Display for VerboseError<I>
where I: Display,

Source§

impl<L, R> Display for Either<L, R>
where L: Display, R: Display,

Source§

impl<O> Display for F32<O>
where O: ByteOrder,

Source§

impl<O> Display for F64<O>
where O: ByteOrder,

Source§

impl<O> Display for I16<O>
where O: ByteOrder,

Source§

impl<O> Display for I32<O>
where O: ByteOrder,

Source§

impl<O> Display for I64<O>
where O: ByteOrder,

Source§

impl<O> Display for I128<O>
where O: ByteOrder,

Source§

impl<O> Display for Isize<O>
where O: ByteOrder,

Source§

impl<O> Display for U16<O>
where O: ByteOrder,

Source§

impl<O> Display for U32<O>
where O: ByteOrder,

Source§

impl<O> Display for U64<O>
where O: ByteOrder,

Source§

impl<O> Display for U128<O>
where O: ByteOrder,

Source§

impl<O> Display for Usize<O>
where O: ByteOrder,

1.33.0 · Source§

impl<Ptr> Display for Pin<Ptr>
where Ptr: Display,

Source§

impl<Src, Dst> Display for AlignmentError<Src, Dst>
where Src: Deref, Dst: KnownLayout + ?Sized,

Produces a human-readable error message.

The message differs between debug and release builds. When debug_assertions are enabled, this message is verbose and includes potentially sensitive information.

Source§

impl<Src, Dst> Display for SizeError<Src, Dst>
where Src: Deref, Dst: KnownLayout + ?Sized,

Produces a human-readable error message.

The message differs between debug and release builds. When debug_assertions are enabled, this message is verbose and includes potentially sensitive information.

Source§

impl<Src, Dst> Display for ValidityError<Src, Dst>
where Dst: KnownLayout + TryFromBytes + ?Sized,

Produces a human-readable error message.

The message differs between debug and release builds. When debug_assertions are enabled, this message is verbose and includes potentially sensitive information.

Source§

impl<T> Display for SendTimeoutError<T>

1.0.0 · Source§

impl<T> Display for TrySendError<T>

1.0.0 · Source§

impl<T> Display for std::sync::poison::TryLockError<T>

1.0.0 · Source§

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

1.0.0 · Source§

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

1.20.0 · Source§

impl<T> Display for chaos_framework::__core::cell::Ref<'_, T>
where T: Display + ?Sized,

1.20.0 · Source§

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

1.28.0 · Source§

impl<T> Display for NonZero<T>

1.74.0 · Source§

impl<T> Display for Saturating<T>
where T: Display,

1.10.0 · Source§

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

Source§

impl<T> Display for ThinBox<T>
where T: Display + ?Sized,

1.0.0 · Source§

impl<T> Display for SendError<T>

Source§

impl<T> Display for std::sync::poison::mutex::MappedMutexGuard<'_, T>
where T: Display + ?Sized,

1.20.0 · Source§

impl<T> Display for std::sync::poison::mutex::MutexGuard<'_, T>
where T: Display + ?Sized,

Source§

impl<T> Display for std::sync::poison::rwlock::MappedRwLockReadGuard<'_, T>
where T: Display + ?Sized,

Source§

impl<T> Display for std::sync::poison::rwlock::MappedRwLockWriteGuard<'_, T>
where T: Display + ?Sized,

1.20.0 · Source§

impl<T> Display for std::sync::poison::rwlock::RwLockReadGuard<'_, T>
where T: Display + ?Sized,

1.20.0 · Source§

impl<T> Display for std::sync::poison::rwlock::RwLockWriteGuard<'_, T>
where T: Display + ?Sized,

1.0.0 · Source§

impl<T> Display for PoisonError<T>

Source§

impl<T> Display for ReentrantLockGuard<'_, T>
where T: Display + ?Sized,

Source§

impl<T> Display for CapacityError<T>

Source§

impl<T> Display for CachePadded<T>
where T: Display,

Source§

impl<T> Display for ShardedLockReadGuard<'_, T>
where T: Display + ?Sized,

Source§

impl<T> Display for ShardedLockWriteGuard<'_, T>
where T: Display + ?Sized,

Source§

impl<T> Display for TryFromBigIntError<T>

Source§

impl<T> Display for Ratio<T>
where T: Display + Clone + Integer,

Source§

impl<T> Display for Packet<T>
where T: Pixel,

Source§

impl<T> Display for Bgr<T>
where T: Display,

Source§

impl<T> Display for Rgb<T>
where T: Display,

Source§

impl<T> Display for Unalign<T>
where T: Unaligned + Display,

1.0.0 · Source§

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

1.0.0 · Source§

impl<T, A> Display for Rc<T, A>
where T: Display + ?Sized, A: Allocator,

Source§

impl<T, A> Display for UniqueRc<T, A>
where T: Display + ?Sized, A: Allocator,

1.0.0 · Source§

impl<T, A> Display for Arc<T, A>
where T: Display + ?Sized, A: Allocator,

Source§

impl<T, A> Display for UniqueArc<T, A>
where T: Display + ?Sized, A: Allocator,

Source§

impl<T, A> Display for Bgra<T, A>
where T: Display, A: Display,

Source§

impl<T, A> Display for Rgba<T, A>
where T: Display, A: Display,

Source§

impl<T, B> Display for zerocopy::ref::def::Ref<B, T>

1.0.0 · Source§

impl<W> Display for IntoInnerError<W>

Source§

impl<const CAP: usize> Display for ArrayString<CAP>