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 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
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§
impl Display for SameSite
impl Display for ryde::Error
impl Display for AsciiChar
impl Display for Infallible
impl Display for FromBytesWithNulError
impl Display for IpAddr
impl Display for SocketAddr
impl Display for GetDisjointMutError
impl Display for VarError
impl Display for std::fs::TryLockError
impl Display for std::sync::mpsc::RecvTimeoutError
impl Display for std::sync::mpsc::TryRecvError
impl Display for ParseAlphabetError
impl Display for DecodeError
impl Display for DecodeSliceError
impl Display for EncodeSliceError
impl Display for cookie::parse::ParseError
impl Display for crossbeam_channel::err::RecvTimeoutError
impl Display for crossbeam_channel::err::TryRecvError
impl Display for httparse::Error
impl Display for log::Level
impl Display for log::LevelFilter
impl Display for InsertError
impl Display for MatchError
impl Display for multer::error::Error
impl Display for rusqlite::error::Error
impl Display for Type
impl Display for FromSqlError
impl Display for Value
impl Display for Segment
impl Display for serde_urlencoded::ser::Error
impl Display for CollectionAllocErr
impl Display for time::error::Error
impl Display for Format
impl Display for InvalidFormatDescription
impl Display for Parse
impl Display for ParseFromDescription
impl Display for TryFromParsed
impl Display for Month
impl Display for Weekday
impl Display for tokio_rusqlite::Error
impl Display for BigEndian
impl Display for LittleEndian
impl Display for ryde::io::ErrorKind
impl Display for MultipartRejection
impl Display for ryde::path::ErrorKind
impl Display for BytesRejection
impl Display for ExtensionRejection
impl Display for FailedToBufferBody
impl Display for FormRejection
impl Display for HostRejection
impl Display for JsonRejection
impl Display for MatchedPathRejection
impl Display for PathRejection
impl Display for QueryRejection
impl Display for RawFormRejection
impl Display for RawPathParamsRejection
impl Display for StringRejection
impl Display for ryde::sync::broadcast::error::RecvError
impl Display for ryde::sync::broadcast::error::TryRecvError
impl Display for TryAcquireError
impl Display for ryde::sync::mpsc::error::TryRecvError
impl Display for ryde::sync::oneshot::error::TryRecvError
impl Display for bool
impl Display for char
impl Display for f16
impl Display for f32
impl Display for f64
impl Display for i8
impl Display for i16
impl Display for i32
impl Display for i64
impl Display for i128
impl Display for isize
impl Display for !
impl Display for str
impl Display for u8
impl Display for u16
impl Display for u32
impl Display for u64
impl Display for u128
impl Display for usize
impl Display for ryde::de::value::Error
impl Display for InvalidMethod
impl Display for InvalidStatusCode
impl Display for ryde::http::Error
impl Display for Method
impl Display for StatusCode
Formats the status code, including the canonical reason.
§Example
assert_eq!(format!("{}", StatusCode::OK), "200 OK");impl Display for Authority
impl Display for InvalidUri
impl Display for InvalidUriParts
impl Display for PathAndQuery
impl Display for Scheme
impl Display for ByteString
impl Display for UnorderedKeyError
impl Display for TryReserveError
impl Display for FromVecWithNulError
impl Display for IntoStringError
impl Display for NulError
impl Display for FromUtf8Error
impl Display for FromUtf16Error
impl Display for String
impl Display for LayoutError
impl Display for AllocError
impl Display for TryFromSliceError
impl Display for core::ascii::EscapeDefault
impl Display for ByteStr
impl Display for BorrowError
impl Display for BorrowMutError
impl Display for CharTryFromError
impl Display for ParseCharError
impl Display for DecodeUtf16Error
impl Display for core::char::EscapeDebug
impl Display for core::char::EscapeDefault
impl Display for core::char::EscapeUnicode
impl Display for ToLowercase
impl Display for ToUppercase
impl Display for TryFromCharError
impl Display for FromBytesUntilNulError
impl Display for Arguments<'_>
impl Display for core::fmt::Error
impl Display for Ipv4Addr
impl Display for Ipv6Addr
Writes an Ipv6Addr, conforming to the canonical style described by RFC 5952.
impl Display for AddrParseError
impl Display for SocketAddrV4
impl Display for SocketAddrV6
impl Display for ParseFloatError
impl Display for core::num::error::ParseIntError
impl Display for core::num::error::TryFromIntError
impl Display for Location<'_>
impl Display for PanicInfo<'_>
impl Display for PanicMessage<'_>
impl Display for ParseBoolError
impl Display for Utf8Error
impl Display for TryFromFloatSecsError
impl Display for Backtrace
impl Display for JoinPathsError
impl Display for std::ffi::os_str::Display<'_>
impl Display for WriterPanicked
impl Display for PanicHookInfo<'_>
impl Display for std::path::Display<'_>
impl Display for NormalizeError
impl Display for StripPrefixError
impl Display for ExitStatus
impl Display for ExitStatusError
impl Display for std::sync::mpsc::RecvError
impl Display for WouldBlock
impl Display for AccessError
impl Display for SystemTimeError
impl Display for axum_core::error::Error
impl Display for TypedHeaderRejection
impl Display for bitflags::parser::ParseError
impl Display for block_buffer::Error
impl Display for TryGetError
impl Display for CookieBuilder<'_>
impl Display for crossbeam_channel::err::RecvError
impl Display for SelectTimeoutError
impl Display for TrySelectError
impl Display for InvalidLength
impl Display for deranged::ParseIntError
impl Display for deranged::TryFromIntError
impl Display for InvalidBufferSize
impl Display for InvalidOutputSize
impl Display for futures_channel::mpsc::SendError
impl Display for futures_channel::mpsc::TryRecvError
impl Display for Canceled
impl Display for SpawnError
impl Display for Aborted
impl Display for headers_core::Error
impl Display for ContentType
impl Display for Host
impl Display for Origin
impl Display for Referer
impl Display for Server
impl Display for UserAgent
impl Display for http_body_util::limited::LengthLimitError
impl Display for InvalidChunkSize
impl Display for HttpDate
impl Display for httpdate::Error
impl Display for hyper::error::Error
impl Display for libsqlite3_sys::error::Error
impl Display for log::ParseLevelError
impl Display for SetLoggerError
impl Display for FromStrError
impl Display for Mime
impl Display for PercentEncode<'_>
impl Display for serde_json::error::Error
impl Display for Number
impl Display for RawValue
impl Display for Path
impl Display for Date
impl Display for Duration
The format returned by this implementation is not stable and must not be relied upon.
By default this produces an exact, full-precision printout of the duration.
For a concise, rounded printout instead, you can use the .N format specifier:
let duration = Duration::new(123456, 789011223);
println!("{duration:.3}");For the purposes of this implementation, a day is exactly 24 hours and a minute is exactly 60 seconds.
impl Display for ComponentRange
impl Display for ConversionRange
impl Display for DifferentVariant
impl Display for InvalidVariant
impl Display for OffsetDateTime
impl Display for PrimitiveDateTime
impl Display for Time
impl Display for UtcDateTime
impl Display for UtcOffset
impl Display for None
impl Display for SetGlobalDefaultError
impl Display for Field
impl Display for FieldSet
impl Display for ValueSet<'_>
impl Display for tracing_core::metadata::Level
impl Display for tracing_core::metadata::LevelFilter
impl Display for tracing_core::metadata::ParseLevelError
impl Display for ParseLevelFilterError
impl Display for ryde::io::Error
impl Display for InvalidBoundary
impl Display for MultipartError
impl Display for ryde::net::tcp::ReuniteError
impl Display for ryde::net::unix::ReuniteError
impl Display for FailedToDeserializePathParams
impl Display for InvalidUtf8InPathParam
impl Display for FailedToDeserializeForm
impl Display for FailedToDeserializeFormBody
impl Display for FailedToDeserializeQueryString
impl Display for FailedToResolveHost
impl Display for InvalidFormContentType
impl Display for InvalidUtf8
impl Display for JsonDataError
impl Display for JsonSyntaxError
impl Display for ryde::rejection::LengthLimitError
impl Display for MatchedPathMissing
impl Display for MissingExtension
impl Display for MissingJsonContentType
impl Display for MissingPathParams
impl Display for NestedPathRejection
impl Display for UnknownBodyError
impl Display for TryCurrentError
impl Display for Component
impl Display for HeaderName
impl Display for InvalidHeaderName
impl Display for InvalidHeaderValue
impl Display for MaxSizeReached
impl Display for ToStrError
impl Display for Uri
impl Display for ryde::sync::oneshot::error::RecvError
impl Display for AcquireError
impl Display for ryde::sync::TryLockError
impl Display for ryde::sync::watch::error::RecvError
impl Display for Id
impl Display for JoinError
impl Display for Elapsed
impl Display for ryde::time::error::Error
impl Display for dyn Expected + '_
impl Display for dyn Value
impl<'a> Display for Unexpected<'a>
impl<'a> Display for EscapeAscii<'a>
impl<'a> Display for core::str::iter::EscapeDebug<'a>
impl<'a> Display for core::str::iter::EscapeDefault<'a>
impl<'a> Display for core::str::iter::EscapeUnicode<'a>
impl<'a> Display for Name<'a>
impl<'a, 'c> Display for cookie::Display<'a, 'c>where
'c: 'a,
impl<'a, 'e, E> Display for Base64Display<'a, 'e, E>where
E: Engine,
impl<'a, K, V> Display for std::collections::hash::map::OccupiedError<'a, K, V>
impl<'a, K, V, A> Display for alloc::collections::btree::map::entry::OccupiedError<'a, K, V, A>
impl<'a, K, V, S, A> Display for hashbrown::map::OccupiedError<'a, K, V, S, A>
impl<'a, T> Display for SpinMutexGuard<'a, T>
impl<'a, T> Display for spin::mutex::MutexGuard<'a, T>
impl<'a, T> Display for ryde::sync::MappedMutexGuard<'a, T>
impl<'a, T> Display for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Display for ryde::sync::RwLockReadGuard<'a, T>
impl<'a, T> Display for ryde::sync::RwLockWriteGuard<'a, T>
impl<'c> Display for Cookie<'c>
impl<A, S, V> Display for ConvertError<A, S, V>
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.
impl<B> Display for Cow<'_, B>
impl<E> Display for Report<E>where
E: Error,
impl<E> Display for serde_path_to_error::Error<E>where
E: Display,
impl<E, R> Display for WithRejection<E, R>where
E: Display,
impl<F> Display for FromFn<F>
impl<K, V> Display for TryIntoHeaderError<K, V>
impl<O> Display for F32<O>where
O: ByteOrder,
impl<O> Display for F64<O>where
O: ByteOrder,
impl<O> Display for I16<O>where
O: ByteOrder,
impl<O> Display for I32<O>where
O: ByteOrder,
impl<O> Display for I64<O>where
O: ByteOrder,
impl<O> Display for I128<O>where
O: ByteOrder,
impl<O> Display for Isize<O>where
O: ByteOrder,
impl<O> Display for U16<O>where
O: ByteOrder,
impl<O> Display for U32<O>where
O: ByteOrder,
impl<O> Display for U64<O>where
O: ByteOrder,
impl<O> Display for U128<O>where
O: ByteOrder,
impl<O> Display for Usize<O>where
O: ByteOrder,
impl<Ptr> Display for Pin<Ptr>where
Ptr: Display,
impl<Src, Dst> Display for AlignmentError<Src, Dst>
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.
impl<Src, Dst> Display for SizeError<Src, Dst>
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.
impl<Src, Dst> Display for ValidityError<Src, Dst>
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.
impl<T> Display for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Display for std::sync::mpsc::TrySendError<T>
impl<T> Display for std::sync::poison::TryLockError<T>
impl<T> Display for crossbeam_channel::err::SendTimeoutError<T>
impl<T> Display for crossbeam_channel::err::TrySendError<T>
impl<T> Display for SetError<T>
impl<T> Display for ryde::sync::mpsc::error::SendTimeoutError<T>
time only.