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 DbError
impl Display for ExecutorError
impl Display for icydb_core::db::query::QueryError
impl Display for QueryPlan
impl Display for SaveMode
impl Display for ResponseError
impl Display for StoreError
impl Display for icydb_core::Error
impl Display for InterfaceError
impl Display for icydb_core::interface::query::QueryError
impl Display for Key
impl Display for icydb_core::serialize::SerializeError
impl Display for icydb_core::types::PrincipalError
impl Display for UlidError
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 ErrorKind
impl Display for RecvTimeoutError
impl Display for TryRecvError
impl Display for binread::error::Error
impl Display for candid::error::Error
impl Display for candid::types::internal::Label
impl Display for TypeInner
printer only.impl Display for MemoryRegistryError
impl Display for canic_memory::serialize::SerializeError
impl Display for Case
impl Display for RoundingError
impl Display for chrono::weekday::Weekday
impl Display for DecodeKind
impl Display for BinaryError
impl Display for FromHexError
impl Display for CanisterSigError
impl Display for SignCostError
impl Display for CallFailed
impl Display for ic_cdk::call::Error
impl Display for OnewayError
impl Display for SignCallError
impl Display for StableMemoryError
impl Display for ErrorCode
impl Display for RejectCode
impl Display for ic_stable_structures::base_vec::InitError
impl Display for ic_stable_structures::base_vec::InitError
impl Display for ic_stable_structures::cell::InitError
impl Display for ic_stable_structures::cell::InitError
impl Display for ic_stable_structures::log::InitError
impl Display for ic_stable_structures::log::InitError
impl Display for ic_principal::PrincipalError
impl Display for ICRC1TextReprError
impl Display for TransferError
impl Display for ApproveError
impl Display for TransferFromError
impl Display for AccountOrId
impl Display for Icrc21Function
impl Display for ICRC3Value
impl Display for Value
impl Display for ValuePredicateFailures
impl Display for leb128::read::Error
impl Display for minicbor::data::Type
impl Display for rust_decimal::error::Error
impl Display for CollectionAllocErr
impl Display for strum::ParseError
std only.impl Display for time::error::Error
impl Display for Format
impl Display for InvalidFormatDescription
impl Display for Month
impl Display for time::weekday::Weekday
impl Display for ulid::base32::DecodeError
impl Display for EncodeError
impl Display for BigEndian
impl Display for LittleEndian
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 IndexPlan
impl Display for DataKey
impl Display for IndexId
impl Display for IndexKey
impl Display for IndexSpec
impl Display for icydb_core::types::Account
impl Display for Blob
impl Display for icydb_core::types::Date
impl Display for icydb_core::types::Decimal
impl Display for icydb_core::types::Duration
impl Display for E8s
impl Display for E18s
impl Display for Float32
impl Display for Float64
impl Display for Int128
impl Display for icydb_core::types::Int
impl Display for Nat128
impl Display for icydb_core::types::Nat
impl Display for icydb_core::types::Principal
impl Display for Subaccount
impl Display for Timestamp
impl Display for icydb_core::types::Ulid
impl Display for Unit
impl Display for VisitorIssues
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 core::num::dec2flt::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 std::io::error::Error
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 RecvError
impl Display for WouldBlock
impl Display for AccessError
impl Display for SystemTimeError
impl Display for anyhow::Error
impl Display for block_buffer::Error
impl Display for Field
printer only.impl Display for Function
printer only.impl Display for candid::types::internal::Type
printer only.impl Display for TypeId
impl Display for candid::types::number::Int
impl Display for candid::types::number::Nat
impl Display for TypeEnv
impl Display for canic_cdk::types::account::Account
impl Display for Cycles
impl Display for chrono::format::ParseError
impl Display for ParseMonthError
impl Display for NaiveDate
The Display output of the naive date d is the same as
d.format("%Y-%m-%d").
The string printed can be readily parsed via the parse method on str.
§Example
use chrono::NaiveDate;
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap()), "2015-09-05");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(0, 1, 1).unwrap()), "0000-01-01");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(-1, 1, 1).unwrap()), "-0001-01-01");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");impl Display for NaiveDateTime
The Display output of the naive date and time dt is the same as
dt.format("%Y-%m-%d %H:%M:%S%.f").
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveDate;
let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{}", dt), "2016-11-15 07:39:24");Leap seconds may also be used.
let dt =
NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{}", dt), "2015-06-30 23:59:60.500");impl Display for NaiveTime
The Display output of the naive time t is the same as
t.format("%H:%M:%S%.f").
The string printed can be readily parsed via the parse method on str.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveTime;
assert_eq!(format!("{}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
format!("{}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
"23:56:04.012"
);
assert_eq!(
format!("{}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
"23:56:04.001234"
);
assert_eq!(
format!("{}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
"23:56:04.000123456"
);Leap seconds may also be used.
assert_eq!(
format!("{}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
"06:59:60.500"
);impl Display for FixedOffset
impl Display for Utc
impl Display for OutOfRange
impl Display for TimeDelta
impl Display for ParseWeekdayError
impl Display for WeekdaySet
Print the collection as a slice-like list of weekdays.
§Example
use chrono::Weekday::*;
assert_eq!("[]", WeekdaySet::EMPTY.to_string());
assert_eq!("[Mon]", WeekdaySet::single(Mon).to_string());
assert_eq!("[Mon, Fri, Sun]", WeekdaySet::from_array([Mon, Fri, Sun]).to_string());impl Display for InvalidLength
impl Display for data_encoding::DecodeError
impl Display for data_encoding::Display<'_>
impl Display for SpecificationError
alloc only.impl Display for deranged::ParseIntError
impl Display for deranged::TryFromIntError
impl Display for WrongVariantError
impl Display for UnitError
impl Display for FromStrError
impl Display for InvalidBufferSize
impl Display for InvalidOutputSize
impl Display for bf16
impl Display for f16
impl Display for CallPerformFailed
impl Display for CallRejected
impl Display for CandidDecodeFailed
impl Display for InsufficientLiquidCycleBalance
impl Display for UnrecognizedRejectCode
impl Display for UserError
impl Display for ic_stable_structures::GrowFailed
impl Display for ic_stable_structures::GrowFailed
impl Display for G1Affine
impl Display for G1Projective
impl Display for G2Affine
impl Display for G2Projective
impl Display for Gt
impl Display for Scalar
impl Display for ic_principal::Principal
convert only.impl Display for icrc_ledger_types::icrc1::account::Account
impl Display for minicbor::data::Int
impl Display for minicbor::data::TryFromIntError
impl Display for minicbor::decode::error::Error
impl Display for EndOfArray
impl Display for EndOfSlice
impl Display for BigInt
impl Display for BigUint
impl Display for ParseBigIntError
impl Display for num_traits::ParseFloatError
impl Display for rand_core::error::Error
impl Display for rust_decimal::decimal::Decimal
impl Display for serde_cbor::error::Error
impl Display for serde_core::de::value::Error
impl Display for time::date::Date
impl Display for time::duration::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 ulid::Ulid
impl Display for dyn Expected + '_
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, 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, T, A> Display for PrettyFmt<'a, '_, T, A>where
T: DocPtr<'a, A>,
impl<A> Display for arrayvec::array_string::ArrayString<A>
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 minicbor::encode::error::Error<E>where
E: Display,
impl<F> Display for FromFn<F>
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.