Skip to main content

Display

Trait Display 

1.6.0 ยท Source
pub trait Display: PointeeSized {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result;
}
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

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

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for i16

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for i32

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for i64

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for i128

1.0.0 ยท Sourceยง

impl Display for isize

Available on WebAssembly only.
Sourceยง

impl Display for !

1.0.0 ยท Sourceยง

impl Display for str

1.0.0 ยท Sourceยง

impl Display for u8

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for u16

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for u32

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for u64

Available on WebAssembly only.
1.0.0 ยท Sourceยง

impl Display for u128

1.0.0 ยท Sourceยง

impl Display for usize

Available on WebAssembly only.
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 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 core::char::EscapeDebug

1.16.0 ยท Sourceยง

impl Display for core::char::EscapeDefault

1.16.0 ยท Sourceยง

impl Display for 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 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

1.0.0 ยท Sourceยง

impl Display for Arguments<'_>

1.0.0 ยท Sourceยง

impl Display for Error

1.60.0 ยท Sourceยง

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

1.34.0 ยท Sourceยง

impl<'a> Display for core::str::EscapeDebug<'a>

1.34.0 ยท Sourceยง

impl<'a> Display for core::str::EscapeDefault<'a>

1.34.0 ยท Sourceยง

impl<'a> Display for core::str::EscapeUnicode<'a>

1.93.0 ยท Sourceยง

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

1.33.0 ยท Sourceยง

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

1.28.0 ยท Sourceยง

impl<T> Display for NonZero<T>

1.0.0 ยท Sourceยง

impl<T: PointeeSized + Display> Display for &T

1.0.0 ยท Sourceยง

impl<T: PointeeSized + Display> Display for &mut T

1.74.0 ยท Sourceยง

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

1.10.0 ยท Sourceยง

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

1.20.0 ยท Sourceยง

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

1.20.0 ยท Sourceยง

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