Expand description
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
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, }));
Implementations on Foreign Types
sourceimpl<W> Display for IntoInnerError<W>
impl<W> Display for IntoInnerError<W>
1.60.0 · sourceimpl Display for ErrorKind
impl Display for ErrorKind
sourcepub fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>
pub fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>
Shows a human-readable description of the ErrorKind
.
This is similar to impl Display for Error
, but doesn’t require first converting to Error.
Examples
use std::io::ErrorKind;
assert_eq!("entity not found", ErrorKind::NotFound.to_string());
1.56.0 · sourceimpl Display for WriterPanicked
impl Display for WriterPanicked
sourceimpl Display for ExitStatusError
impl Display for ExitStatusError
1.7.0 · sourceimpl Display for StripPrefixError
impl Display for StripPrefixError
1.17.0 · sourceimpl Display for FromBytesWithNulError
impl Display for FromBytesWithNulError
1.8.0 · sourceimpl Display for SystemTimeError
impl Display for SystemTimeError
sourceimpl Display for SocketAddrV4
impl Display for SocketAddrV4
sourceimpl Display for ExitStatus
impl Display for ExitStatus
sourceimpl Display for JoinPathsError
impl Display for JoinPathsError
1.4.0 · sourceimpl Display for AddrParseError
impl Display for AddrParseError
sourceimpl Display for Ipv6Addr
impl Display for Ipv6Addr
Write an Ipv6Addr, conforming to the canonical style described by RFC 5952.