rustmax::cxx_build::core::fmt

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.

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

Source§

impl Display for clang_sys::Version

Source§

impl Display for codespan_reporting::files::Error

Source§

impl Display for gimli::read::Error

Source§

impl Display for globset::ErrorKind

Source§

impl Display for AdditionError

Source§

impl Display for CreationError

Source§

impl Display for RecordError

Source§

impl Display for SubtractionError

Source§

impl Display for httparse::Error

Source§

impl Display for humantime::date::Error

Source§

impl Display for humantime::duration::Error

Source§

impl Display for GetTimezoneError

Source§

impl Display for CodePointInversionListError

Source§

impl Display for CodePointInversionListAndStringListError

Source§

impl Display for icu_collections::codepointtrie::error::Error

Source§

impl Display for ParserError

Source§

impl Display for LocaleTransformError

Source§

impl Display for NormalizerError

Source§

impl Display for PropertiesError

Source§

impl Display for DataErrorKind

Source§

impl Display for ignore::Error

Source§

impl Display for IpNet

Source§

impl Display for libloading::error::Error

Source§

impl Display for InsertError

Source§

impl Display for matchit::error::MatchError

Source§

impl Display for nix::errno::consts::Errno

Source§

impl Display for Signal

Source§

impl Display for rand::distributions::bernoulli::BernoulliError

Source§

impl Display for WeightedError

Source§

impl Display for StartError

Source§

impl Display for Ast

Print a display representation of this Ast.

This does not preserve any of the original whitespace formatting that may have originally been present in the concrete syntax from which this Ast was generated.

This implementation uses constant stack space and heap space proportional to the size of the Ast.

Source§

impl Display for regex_syntax::ast::ErrorKind

Source§

impl Display for regex_syntax::error::Error

Source§

impl Display for regex_syntax::hir::ErrorKind

Source§

impl Display for rustls_pki_types::pem::Error

Source§

impl Display for rusty_fork::error::Error

Source§

impl Display for Segment

Source§

impl Display for serde_urlencoded::ser::Error

Source§

impl Display for QuoteError

Source§

impl Display for CollectionAllocErr

Source§

impl Display for StrSimError

Source§

impl Display for TinyStrError

Source§

impl Display for AnyDelimiterCodecError

Source§

impl Display for LinesCodecError

Source§

impl Display for Item

Source§

impl Display for toml_edit::ser::Error

Source§

impl Display for toml_edit::value::Value

Source§

impl Display for ucd_trie::owned::Error

Source§

impl Display for GraphemeClusterBreak

Source§

impl Display for SentenceBreak

Source§

impl Display for WordBreak

Source§

impl Display for winnow::error::ErrorKind

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

Source§

impl Display for StrContext

Source§

impl Display for StrContextValue

Source§

impl Display for BigEndian

Source§

impl Display for LittleEndian

Source§

impl Display for ZeroVecError

Source§

impl Display for rustmax::axum::extract::path::ErrorKind

Source§

impl Display for BytesRejection

Source§

impl Display for ExtensionRejection

Source§

impl Display for FailedToBufferBody

Source§

impl Display for FormRejection

Source§

impl Display for JsonRejection

Source§

impl Display for MatchedPathRejection

Source§

impl Display for PathRejection

Source§

impl Display for QueryRejection

Source§

impl Display for RawFormRejection

Source§

impl Display for RawPathParamsRejection

Source§

impl Display for StringRejection

Source§

impl Display for ParseAlphabetError

Source§

impl Display for DecodeError

Source§

impl Display for DecodeSliceError

Source§

impl Display for EncodeSliceError

Source§

impl Display for DeriveTrait

Source§

impl Display for Abi

Source§

impl Display for AliasVariation

Source§

impl Display for BindgenError

Source§

impl Display for EnumVariation

Source§

impl Display for FieldVisibilityKind

Source§

impl Display for Formatter

Source§

impl Display for MacroTypeVariation

Source§

impl Display for NonCopyUnionStyle

Source§

impl Display for RustEdition

Source§

impl Display for RoundingError

Source§

impl Display for Weekday

Source§

impl Display for ColorChoice

Source§

impl Display for ContextKind

Source§

impl Display for ContextValue

Source§

impl Display for rustmax::clap::error::ErrorKind

Source§

impl Display for MatchesError

Source§

impl Display for rustmax::crossbeam::channel::RecvTimeoutError

Source§

impl Display for rustmax::crossbeam::channel::TryRecvError

Source§

impl Display for rustmax::ctrlc::Error

Source§

impl Display for BinaryError

Source§

impl Display for FromHexError

Source§

impl Display for rustmax::json5::Error

Source§

impl Display for rustmax::log::Level

Source§

impl Display for rustmax::log::LevelFilter

Source§

impl Display for rustmax::proc_macro2::TokenTree

Prints the token tree as a string that is supposed to be losslessly convertible back into the same token tree (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters and negative numeric literals.

1.29.0 · Source§

impl Display for rustmax::proc_macro::TokenTree

Prints the token tree as a string that is supposed to be losslessly convertible back into the same token tree (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters and negative numeric literals.

Note: the exact form of the output is subject to change, e.g. there might be changes in the whitespace used between tokens. Therefore, you should not do any kind of simple substring matching on the output string (as produced by to_string) to implement a proc macro, because that matching might stop working if such changes happen. Instead, you should work at the TokenTree level, e.g. matching against TokenTree::Ident, TokenTree::Punct, or TokenTree::Literal.

Source§

impl Display for TestCaseError

Source§

impl Display for rustmax::proptest::string::Error

Source§

impl Display for RngAlgorithm

Source§

impl Display for rustmax::rand::distr::BernoulliError

Source§

impl Display for rustmax::rand::distr::uniform::Error

Source§

impl Display for rustmax::rand::seq::WeightError

Source§

impl Display for rustmax::regex::Error

Source§

impl Display for ReadlineError

Source§

impl Display for AsciiChar

1.34.0 · Source§

impl Display for Infallible

1.0.0 · Source§

impl Display for VarError

1.60.0 · Source§

impl Display for rustmax::std::io::ErrorKind

1.7.0 · Source§

impl Display for IpAddr

1.0.0 · Source§

impl Display for SocketAddr

1.15.0 · Source§

impl Display for rustmax::std::sync::mpsc::RecvTimeoutError

1.0.0 · Source§

impl Display for rustmax::std::sync::mpsc::TryRecvError

Source§

impl Display for LogicOperator

Source§

impl Display for MathOperator

Source§

impl Display for rustmax::tera::Value

Source§

impl Display for rustmax::tokio::sync::broadcast::error::RecvError

Source§

impl Display for rustmax::tokio::sync::broadcast::error::TryRecvError

Source§

impl Display for TryAcquireError

Source§

impl Display for rustmax::tokio::sync::mpsc::error::TryRecvError

Source§

impl Display for rustmax::tokio::sync::oneshot::error::TryRecvError

Source§

impl Display for rustmax::toml::Value

Source§

impl Display for rustmax::toml::value::Offset

Source§

impl Display for rustmax::url::ParseError

Source§

impl Display for SyntaxViolation

1.0.0 · Source§

impl Display for bool

1.0.0 · Source§

impl Display for char

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 aho_corasick::util::error::BuildError

Source§

impl Display for aho_corasick::util::error::MatchError

Source§

impl Display for aho_corasick::util::primitives::PatternIDError

Source§

impl Display for aho_corasick::util::primitives::StateIDError

Source§

impl Display for bstr::bstr::BStr

Source§

impl Display for BString

Source§

impl Display for bstr::ext_vec::FromUtf8Error

Source§

impl Display for bstr::utf8::Utf8Error

Source§

impl Display for chrono_tz::timezones::ParseError

Source§

impl Display for AsciiCharsIter<'_>

Format without a temporary string

use deunicode::AsciiChars;
format!("what's up {}", "🐶".ascii_chars());
Source§

impl Display for env_filter::parser::ParseError

Source§

impl Display for getrandom::error::Error

Source§

impl Display for getrandom::error::Error

Source§

impl Display for DwAccess

Source§

impl Display for DwAddr

Source§

impl Display for DwAt

Source§

impl Display for DwAte

Source§

impl Display for DwCc

Source§

impl Display for DwCfa

Source§

impl Display for DwChildren

Source§

impl Display for DwDefaulted

Source§

impl Display for DwDs

Source§

impl Display for DwDsc

Source§

impl Display for DwEhPe

Source§

impl Display for DwEnd

Source§

impl Display for DwForm

Source§

impl Display for DwId

Source§

impl Display for DwIdx

Source§

impl Display for DwInl

Source§

impl Display for DwLang

Source§

impl Display for DwLle

Source§

impl Display for DwLnct

Source§

impl Display for DwLne

Source§

impl Display for DwLns

Source§

impl Display for DwMacro

Source§

impl Display for DwOp

Source§

impl Display for DwOrd

Source§

impl Display for DwRle

Source§

impl Display for DwSect

Source§

impl Display for DwSectV2

Source§

impl Display for DwTag

Source§

impl Display for DwUt

Source§

impl Display for DwVirtuality

Source§

impl Display for DwVis

Source§

impl Display for glob::GlobError

Source§

impl Display for Pattern

Show the original glob pattern.

Source§

impl Display for PatternError

Source§

impl Display for Glob

Source§

impl Display for globset::Error

Source§

impl Display for globwalk::GlobError

Source§

impl Display for h2::error::Error

Source§

impl Display for h2::frame::reason::Reason

Source§

impl Display for UsizeTypeTooSmall

Source§

impl Display for http_body_util::limited::LengthLimitError

Source§

impl Display for InvalidChunkSize

Source§

impl Display for HttpDate

Source§

impl Display for httpdate::Error

Source§

impl Display for Rfc3339Timestamp

Source§

impl Display for FormattedDuration

Source§

impl Display for Duration

Source§

impl Display for humantime::wrapper::Timestamp

Source§

impl Display for hyper_util::client::legacy::client::Error

Source§

impl Display for InvalidNameError

Source§

impl Display for hyper_util::client::legacy::connect::dns::Name

Source§

impl Display for Other

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::other::subtag::Subtag

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::private::other::Subtag

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Private

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Extensions

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Fields

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::transform::key::Key

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Transform

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::transform::value::Value

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Attribute

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Attributes

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::unicode::key::Key

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Keywords

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for Unicode

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for icu_locid::extensions::unicode::value::Value

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for LanguageIdentifier

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for Locale

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for Language

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Region

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Script

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Variant

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for Variants

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

Source§

impl Display for MirroredPairedBracketDataTryFromError

Source§

impl Display for DataError

Source§

impl Display for FormattedHelloWorld<'_>

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for DataKey

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for DataLocale

This trait is implemented for compatibility with fmt!. To create a string, Writeable::write_to_string is usually more efficient.

Source§

impl Display for DataRequest<'_>

Source§

impl Display for Errors

Source§

impl Display for indexmap::TryReserveError

Source§

impl Display for Ipv4Net

Source§

impl Display for Ipv6Net

Source§

impl Display for PrefixLenError

Source§

impl Display for ipnet::parser::AddrParseError

Source§

impl Display for native_tls::Error

Source§

impl Display for TimeSpec

Source§

impl Display for TimeVal

Source§

impl Display for Pid

Source§

impl Display for num_traits::ParseFloatError

Source§

impl Display for object::read::Error

Source§

impl Display for SectionIndex

Source§

impl Display for SymbolIndex

Source§

impl Display for Asn1GeneralizedTimeRef

Source§

impl Display for Asn1ObjectRef

Source§

impl Display for Asn1TimeRef

Source§

impl Display for BigNum

Source§

impl Display for BigNumRef

Source§

impl Display for openssl::error::Error

Source§

impl Display for ErrorStack

Source§

impl Display for openssl::ssl::error::Error

Source§

impl Display for OpensslString

Source§

impl Display for OpensslStringRef

Source§

impl Display for X509VerifyResult

Source§

impl Display for ReadError

Source§

impl Display for rand_core::error::Error

Source§

impl Display for regex_automata::dfa::onepass::BuildError

Source§

impl Display for regex_automata::hybrid::error::BuildError

Source§

impl Display for CacheError

Source§

impl Display for regex_automata::meta::error::BuildError

Source§

impl Display for regex_automata::nfa::thompson::error::BuildError

Source§

impl Display for GroupInfoError

Source§

impl Display for UnicodeWordBoundaryError

Source§

impl Display for regex_automata::util::primitives::PatternIDError

Source§

impl Display for SmallIndexError

Source§

impl Display for regex_automata::util::primitives::StateIDError

Source§

impl Display for regex_automata::util::search::MatchError

Source§

impl Display for PatternSetInsertError

Source§

impl Display for DeserializeError

Source§

impl Display for SerializeError

Source§

impl Display for regex_syntax::ast::Error

Source§

impl Display for regex_syntax::hir::Error

Source§

impl Display for Hir

Print a display representation of this Hir.

The result of this is a valid regular expression pattern string.

This implementation uses constant stack space and heap space proportional to the size of the Hir.

Source§

impl Display for CaseFoldError

Source§

impl Display for UnicodeWordError

Source§

impl Display for rustix::backend::io::errno::Errno

Source§

impl Display for rustls_pki_types::server_name::AddrParseError

Source§

impl Display for InvalidDnsNameError

Source§

impl Display for ExitStatusWrapper

Source§

impl Display for Path

Source§

impl Display for LengthDelimitedCodecError

Source§

impl Display for Array

Source§

impl Display for ArrayOfTables

Source§

impl Display for toml_edit::de::Error

Source§

impl Display for DocumentMut

Source§

impl Display for TomlError

Displays a TOML parse error

§Example

TOML parse error at line 1, column 10 | 1 | 00:32:00.a999999 | ^ Unexpected a Expected digit While parsing a Time While parsing a Date-Time

Source§

impl Display for InlineTable

Source§

impl Display for InternalString

Source§

impl Display for toml_edit::key::Key

Source§

impl Display for Table

Source§

impl Display for SetGlobalDefaultError

Source§

impl Display for Field

Source§

impl Display for FieldSet

Source§

impl Display for tracing_core::metadata::Level

Source§

impl Display for tracing_core::metadata::LevelFilter

Source§

impl Display for tracing_core::metadata::ParseLevelError

Source§

impl Display for ParseLevelFilterError

Source§

impl Display for UnicodeVersion

Source§

impl Display for Utf8CharsError

Source§

impl Display for Utf16CharsError

Source§

impl Display for ContextError

Source§

impl Display for winnow::stream::BStr

Source§

impl Display for Bytes

Source§

impl Display for Range

Source§

impl Display for rustmax::anyhow::Error

Source§

impl Display for FailedToDeserializeForm

Source§

impl Display for FailedToDeserializeFormBody

Source§

impl Display for FailedToDeserializePathParams

Source§

impl Display for FailedToDeserializeQueryString

Source§

impl Display for InvalidFormContentType

Source§

impl Display for InvalidUtf8

Source§

impl Display for InvalidUtf8InPathParam

Source§

impl Display for JsonDataError

Source§

impl Display for JsonSyntaxError

Source§

impl Display for rustmax::axum::extract::rejection::LengthLimitError

Source§

impl Display for MatchedPathMissing

Source§

impl Display for MissingExtension

Source§

impl Display for MissingJsonContentType

Source§

impl Display for MissingPathParams

Source§

impl Display for NestedPathRejection

Source§

impl Display for UnknownBodyError

Source§

impl Display for rustmax::axum::Error

Source§

impl Display for Bindings

Source§

impl Display for RustTarget

Source§

impl Display for rustmax::bitflags::parser::ParseError

Source§

impl Display for Hash

Source§

impl Display for HexError

Source§

impl Display for rustmax::cc::Error

Source§

impl Display for FixedOffset

Source§

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");
Source§

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");
Source§

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"
);
Source§

impl Display for OutOfRange

Source§

impl Display for OutOfRangeError

Source§

impl Display for rustmax::chrono::ParseError

Source§

impl Display for ParseMonthError

Source§

impl Display for ParseWeekdayError

Source§

impl Display for TimeDelta

Source§

impl Display for Utc

Source§

impl Display for Str

Source§

impl Display for StyledStr

Color-unaware printing. Never uses coloring.

Source§

impl Display for ValueRange

Source§

impl Display for Arg

Source§

impl Display for Command

Source§

impl Display for rustmax::clap::Id

1.26.0 · Source§

impl Display for PanicInfo<'_>

1.81.0 · Source§

impl Display for PanicMessage<'_>

Source§

impl Display for rustmax::crossbeam::channel::RecvError

Source§

impl Display for SelectTimeoutError

Source§

impl Display for TrySelectError

Source§

impl Display for rustmax::derive_more::FromStrError

Source§

impl Display for UnitError

Source§

impl Display for WrongVariantError

Source§

impl Display for rustmax::env_logger::fmt::Timestamp

Source§

impl Display for Reset

Source§

impl Display for Style

Source§

impl Display for rustmax::futures::channel::mpsc::SendError

Source§

impl Display for rustmax::futures::channel::mpsc::TryRecvError

Source§

impl Display for Canceled

Source§

impl Display for EnterError

Source§

impl Display for Aborted

Source§

impl Display for SpawnError

Source§

impl Display for InvalidMethod

Source§

impl Display for InvalidStatusCode

Source§

impl Display for rustmax::hyper::http::Error

Source§

impl Display for Authority

Source§

impl Display for InvalidUri

Source§

impl Display for InvalidUriParts

Source§

impl Display for PathAndQuery

Source§

impl Display for Scheme

Source§

impl Display for rustmax::hyper::Error

Source§

impl Display for Uri

Source§

impl Display for rustmax::jiff::civil::Date

Source§

impl Display for rustmax::jiff::civil::DateTime

Converts a DateTime into an ISO 8601 compliant string.

Options currently supported:

§Example

use jiff::civil::date;

let dt = date(2024, 6, 15).at(7, 0, 0, 123_000_000);
assert_eq!(format!("{dt:.6}"), "2024-06-15T07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{dt:.300}"), "2024-06-15T07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{dt:.0}"), "2024-06-15T07:00:00");
Source§

impl Display for rustmax::jiff::civil::Time

Converts a Time into an ISO 8601 compliant string.

Options currently supported:

§Example

use jiff::civil::time;

let t = time(7, 0, 0, 123_000_000);
assert_eq!(format!("{t:.6}"), "07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{t:.300}"), "07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{t:.0}"), "07:00:00");
Source§

impl Display for rustmax::jiff::Error

Source§

impl Display for SignedDuration

Source§

impl Display for Span

Source§

impl Display for rustmax::jiff::Timestamp

Converts a Timestamp datetime into a RFC 3339 compliant string.

Since a Timestamp never has an offset associated with it and is always in UTC, the string emitted by this trait implementation uses Z for “Zulu” time. The significance of Zulu time is prescribed by RFC 9557 and means that “the time in UTC is known, but the offset to local time is unknown.” If you need to emit an RFC 3339 compliant string with a specific offset, then use Timestamp::display_with_offset.

§Forrmatting options supported

§Example

use jiff::Timestamp;

let ts = Timestamp::new(1_123_456_789, 123_000_000)?;
assert_eq!(
    format!("{ts:.6}"),
    "2005-08-07T23:19:49.123000Z",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
    format!("{ts:.300}"),
    "2005-08-07T23:19:49.123000000Z",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
    format!("{ts:.0}"),
    "2005-08-07T23:19:49Z",
);
Source§

impl Display for TimestampDisplayWithOffset

Source§

impl Display for Zoned

Converts a Zoned datetime into a RFC 9557 compliant string.

Options currently supported:

§Example

use jiff::civil::date;

let zdt = date(2024, 6, 15).at(7, 0, 0, 123_000_000).in_tz("US/Eastern")?;
assert_eq!(
    format!("{zdt:.6}"),
    "2024-06-15T07:00:00.123000-04:00[US/Eastern]",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
    format!("{zdt:.300}"),
    "2024-06-15T07:00:00.123000000-04:00[US/Eastern]",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
    format!("{zdt:.0}"),
    "2024-06-15T07:00:00-04:00[US/Eastern]",
);
Source§

impl Display for rustmax::jiff::tz::Offset

Source§

impl Display for rustmax::log::ParseLevelError

Source§

impl Display for SetLoggerError

Source§

impl Display for rustmax::mime::FromStrError

Source§

impl Display for Mime

Source§

impl Display for BigInt

Source§

impl Display for BigUint

Source§

impl Display for ParseBigIntError

Source§

impl Display for rustmax::proc_macro2::Group

Prints the group as a string that should be losslessly convertible back into the same group (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters.

Source§

impl Display for rustmax::proc_macro2::LexError

Source§

impl Display for rustmax::proc_macro2::Literal

Source§

impl Display for rustmax::proc_macro2::Punct

Prints the punctuation character as a string that should be losslessly convertible back into the same character.

Source§

impl Display for rustmax::proc_macro2::TokenStream

Prints the token stream as a string that is supposed to be losslessly convertible back into the same token stream (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters and negative numeric literals.

Source§

impl Display for ExpandError

1.29.0 · Source§

impl Display for rustmax::proc_macro::Group

Prints the group as a string that should be losslessly convertible back into the same group (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters.

1.29.0 · Source§

impl Display for rustmax::proc_macro::Ident

Prints the identifier as a string that should be losslessly convertible back into the same identifier.

1.44.0 · Source§

impl Display for rustmax::proc_macro::LexError

1.29.0 · Source§

impl Display for rustmax::proc_macro::Literal

Prints the literal as a string that should be losslessly convertible back into the same literal (except for possible rounding for floating point literals).

1.29.0 · Source§

impl Display for rustmax::proc_macro::Punct

Prints the punctuation character as a string that should be losslessly convertible back into the same character.

1.15.0 · Source§

impl Display for rustmax::proc_macro::TokenStream

Prints the token stream as a string that is supposed to be losslessly convertible back into the same token stream (modulo spans), except for possibly TokenTree::Groups with Delimiter::None delimiters and negative numeric literals.

Note: the exact form of the output is subject to change, e.g. there might be changes in the whitespace used between tokens. Therefore, you should not do any kind of simple substring matching on the output string (as produced by to_string) to implement a proc macro, because that matching might stop working if such changes happen. Instead, you should work at the TokenTree level, e.g. matching against TokenTree::Ident, TokenTree::Punct, or TokenTree::Literal.

Source§

impl Display for PersistedSeed

Source§

impl Display for rustmax::proptest::test_runner::Reason

Source§

impl Display for TestRunner

Source§

impl Display for Empty

Source§

impl Display for OsError

Source§

impl Display for ThreadPoolBuildError

Source§

impl Display for rustmax::regex::bytes::Regex

Source§

impl Display for rustmax::regex::Regex

Source§

impl Display for HeaderName

Source§

impl Display for InvalidHeaderName

Source§

impl Display for InvalidHeaderValue

Source§

impl Display for MaxSizeReached

Source§

impl Display for ToStrError

Source§

impl Display for rustmax::reqwest::Error

Source§

impl Display for Method

Source§

impl Display for StatusCode

Formats the status code, including the canonical reason.

§Example

assert_eq!(format!("{}", StatusCode::OK), "200 OK");
Source§

impl Display for BuildMetadata

Source§

impl Display for Comparator

Source§

impl Display for rustmax::semver::Error

Source§

impl Display for Prerelease

Source§

impl Display for rustmax::semver::Version

Source§

impl Display for VersionReq

Source§

impl Display for rustmax::serde::de::value::Error

Source§

impl Display for rustmax::serde_json::Error

Source§

impl Display for RawValue

Source§

impl Display for rustmax::sha2::digest::block_buffer::Error

Source§

impl Display for InvalidLength

Source§

impl Display for InvalidBufferSize

Source§

impl Display for InvalidOutputSize

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 rustmax::std::ascii::EscapeDefault

1.65.0 · Source§

impl Display for Backtrace

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 rustmax::std::char::EscapeDebug

1.16.0 · Source§

impl Display for rustmax::std::char::EscapeDefault

1.16.0 · Source§

impl Display for rustmax::std::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

Source§

impl Display for UnorderedKeyError

1.57.0 · Source§

impl Display for rustmax::std::collections::TryReserveError

1.0.0 · Source§

impl Display for JoinPathsError

Source§

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

1.69.0 · Source§

impl Display for FromBytesUntilNulError

1.17.0 · Source§

impl Display for FromBytesWithNulError

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 Arguments<'_>

1.0.0 · Source§

impl Display for rustmax::std::fmt::Error

1.0.0 · Source§

impl Display for rustmax::std::io::Error

1.56.0 · Source§

impl Display for WriterPanicked

1.4.0 · Source§

impl Display for rustmax::std::net::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 rustmax::std::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 PanicHookInfo<'_>

1.0.0 · Source§

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

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 ParseBoolError

1.0.0 · Source§

impl Display for rustmax::std::str::Utf8Error

1.0.0 · Source§

impl Display for rustmax::std::string::FromUtf8Error

1.0.0 · Source§

impl Display for FromUtf16Error

1.0.0 · Source§

impl Display for String

1.0.0 · Source§

impl Display for rustmax::std::sync::mpsc::RecvError

1.26.0 · Source§

impl Display for AccessError

1.8.0 · Source§

impl Display for SystemTimeError

1.66.0 · Source§

impl Display for TryFromFloatSecsError

Source§

impl Display for rustmax::syn::Error

Source§

impl Display for rustmax::syn::Ident

Prints the identifier as a string that should be losslessly convertible back into the same identifier.

Source§

impl Display for Lifetime

Source§

impl Display for LitFloat

Source§

impl Display for LitInt

Source§

impl Display for PathPersistError

Source§

impl Display for rustmax::tera::Error

Source§

impl Display for Number

Source§

impl Display for ColorChoiceParseError

Source§

impl Display for ParseColorError

Source§

impl Display for rustmax::tokio::net::tcp::ReuniteError

Source§

impl Display for rustmax::tokio::net::unix::ReuniteError

Source§

impl Display for TryCurrentError

Source§

impl Display for rustmax::tokio::sync::oneshot::error::RecvError

Source§

impl Display for AcquireError

Source§

impl Display for rustmax::tokio::sync::TryLockError

Source§

impl Display for rustmax::tokio::sync::watch::error::RecvError

Source§

impl Display for rustmax::tokio::task::Id

Source§

impl Display for JoinError

Source§

impl Display for rustmax::tokio::time::error::Elapsed

Source§

impl Display for rustmax::tokio::time::error::Error

Source§

impl Display for rustmax::toml::de::Error

Source§

impl Display for Map<String, Value>

Source§

impl Display for rustmax::toml::ser::Error

Source§

impl Display for rustmax::toml::value::Date

Source§

impl Display for Datetime

Source§

impl Display for DatetimeParseError

Source§

impl Display for rustmax::toml::value::Time

Source§

impl Display for Discover

Source§

impl Display for Closed

Source§

impl Display for ServiceError

Source§

impl Display for Overloaded

Source§

impl Display for InvalidBackoff

Source§

impl Display for rustmax::tower::timeout::error::Elapsed

Source§

impl Display for None

Source§

impl Display for Url

Display the serialization of this URL.

Source§

impl Display for rustmax::walkdir::Error

Source§

impl Display for Cmd<'_>

Source§

impl Display for rustmax::xshell::Error

Source§

impl Display for CxxString

Source§

impl Display for Exception

Source§

impl Display for dyn Value

Source§

impl Display for dyn Expected + '_

Source§

impl<'a> Display for BytesOrWideString<'a>

Source§

impl<'a> Display for Unexpected<'a>

Source§

impl<'a> Display for EscapeBytes<'a>

Source§

impl<'a> Display for PercentEncode<'a>

Source§

impl<'a> Display for Demangle<'a>

Source§

impl<'a> Display for ValueSet<'a>

Source§

impl<'a> Display for SymbolName<'a>

Source§

impl<'a> Display for rustmax::mime::Name<'a>

1.60.0 · Source§

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

1.34.0 · Source§

impl<'a> Display for rustmax::std::str::EscapeDebug<'a>

1.34.0 · Source§

impl<'a> Display for rustmax::std::str::EscapeDefault<'a>

1.34.0 · Source§

impl<'a> Display for rustmax::std::str::EscapeUnicode<'a>

Source§

impl<'a> Display for ParseBuffer<'a>

Source§

impl<'a, 'e, E> Display for Base64Display<'a, 'e, E>
where E: Engine,

Source§

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

Source§

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

Source§

impl<'a, I, B> Display for DelayedFormat<I>
where I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>,

Source§

impl<'a, I, F> Display for itertools::format::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 rustmax::std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, V: Debug,

Source§

impl<'a, K, V, A> Display for rustmax::std::collections::btree_map::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, T> Display for rustmax::tokio::sync::MappedMutexGuard<'a, T>
where T: Display + ?Sized,

Source§

impl<'a, T> Display for RwLockMappedWriteGuard<'a, T>
where T: Display + ?Sized,

Source§

impl<'a, T> Display for rustmax::tokio::sync::RwLockReadGuard<'a, T>
where T: Display + ?Sized,

Source§

impl<'a, T> Display for rustmax::tokio::sync::RwLockWriteGuard<'a, T>
where T: Display + ?Sized,

Source§

impl<'d> Display for TimeZoneName<'d>

Source§

impl<'f> Display for rustmax::jiff::fmt::strtime::Display<'f>

Source§

impl<'i, R> Display for Pair<'i, R>
where R: RuleType,

Source§

impl<'i, R> Display for Pairs<'i, R>
where R: RuleType,

Source§

impl<'k> Display for KeyMut<'k>

Source§

impl<'n> Display for Pieces<'n>

Source§

impl<'s> Display for StrippedStr<'s>

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<B> Display for BitVec<B>
where B: BitBlock,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<Enum> Display for TryFromPrimitiveError<Enum>
where Enum: TryFromPrimitive,

Source§

impl<F> Display for rustmax::clap::error::Error<F>
where F: ErrorFormatter,

Source§

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

Source§

impl<F> Display for PersistError<F>

Source§

impl<I> Display for itertools::exactly_one_err::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<I> Display for InputError<I>
where I: Clone + Display,

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

Source§

impl<I> Display for TreeErrorBase<I>
where I: Stream + Clone + Display,

Source§

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

Source§

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

Source§

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

Source§

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

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

Source§

impl<I, C> Display for TreeError<I, C>
where I: Stream + Clone + Display, C: Display,

Source§

impl<I, C> Display for TreeErrorContext<I, C>
where I: Stream + Clone + Display, C: Display,

Source§

impl<I, E> Display for winnow::error::ParseError<I, E>
where I: AsBStr, E: Display,

Source§

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

Source§

impl<I, S> Display for Stateful<I, S>
where I: Display,

Source§

impl<K> Display for Failed<K>

Source§

impl<K, V> Display for TryIntoHeaderError<K, V>

Source§

impl<K, V, S, A> Display for hashbrown::map::OccupiedError<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<O> Display for zerocopy::byteorder::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<R> Display for ErrorVariant<R>
where R: RuleType,

Source§

impl<R> Display for pest::error::Error<R>
where R: RuleType,

Source§

impl<S> Display for native_tls::HandshakeError<S>
where S: Any + Debug,

Source§

impl<S> Display for openssl::ssl::error::HandshakeError<S>
where S: Debug,

Source§

impl<S> Display for Host<S>
where S: AsRef<str>,

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 Src: Deref, 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 rustmax::crossbeam::channel::SendTimeoutError<T>

Source§

impl<T> Display for rustmax::crossbeam::channel::TrySendError<T>

Source§

impl<T> Display for TestError<T>
where T: Debug,

1.0.0 · Source§

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

Source§

impl<T> Display for rustmax::std::sync::mpmc::SendTimeoutError<T>

1.0.0 · Source§

impl<T> Display for rustmax::std::sync::mpsc::TrySendError<T>

Source§

impl<T> Display for SetError<T>

Source§

impl<T> Display for rustmax::tokio::sync::mpsc::error::SendTimeoutError<T>

Source§

impl<T> Display for rustmax::tokio::sync::mpsc::error::TrySendError<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,

Source§

impl<T> Display for CapacityError<T>

Source§

impl<T> Display for PollSendError<T>

Source§

impl<T> Display for Formatted<T>
where T: ValueRepr,

Source§

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

Source§

impl<T> Display for TryWriteableInfallibleAsWriteable<T>
where T: TryWriteable<Error = Infallible>,

Source§

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

Source§

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

Source§

impl<T> Display for rustmax::crossbeam::channel::SendError<T>

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 CachePadded<T>
where T: Display,

Source§

impl<T> Display for TryFromReprError<T>
where T: Debug,

Source§

impl<T> Display for TryIntoError<T>

Source§

impl<T> Display for TryUnwrapError<T>

Source§

impl<T> Display for rustmax::futures::channel::mpsc::TrySendError<T>

Source§

impl<T> Display for rustmax::futures::io::ReuniteError<T>

Source§

impl<T> Display for Port<T>

Source§

impl<T> Display for TryFromBigIntError<T>

Source§

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

1.20.0 · Source§

impl<T> Display for rustmax::std::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,

1.0.0 · Source§

impl<T> Display for rustmax::std::sync::mpsc::SendError<T>

Source§

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

Source§

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

Source§

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

1.20.0 · Source§

impl<T> Display for rustmax::std::sync::MutexGuard<'_, 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,

1.20.0 · Source§

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

1.20.0 · Source§

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

Source§

impl<T> Display for AsyncFdTryNewError<T>

Source§

impl<T> Display for rustmax::tokio::sync::broadcast::error::SendError<T>

Source§

impl<T> Display for rustmax::tokio::sync::mpsc::error::SendError<T>

Source§

impl<T> Display for rustmax::tokio::sync::MutexGuard<'_, T>
where T: Display + ?Sized,

Source§

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

Source§

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

Source§

impl<T> Display for rustmax::tokio::sync::watch::error::SendError<T>

Source§

impl<T> Display for SharedPtr<T>

Source§

impl<T> Display for UniquePtr<T>

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,

1.0.0 · Source§

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

Source§

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

Source§

impl<T, B> Display for zerocopy::Ref<B, [T]>
where B: ByteSlice, T: FromBytes, [T]: Display,

Source§

impl<T, B> Display for zerocopy::Ref<B, T>
where B: ByteSlice, T: FromBytes + Display,

Source§

impl<T, E> Display for TryChunksError<T, E>
where E: Display,

Source§

impl<T, E> Display for TryReadyChunksError<T, E>
where E: Display,

Source§

impl<T, Item> Display for rustmax::futures::prelude::stream::ReuniteError<T, Item>

Source§

impl<T, O> Display for ISizeFormatter<T, O>

Source§

impl<T, O> Display for SizeFormatter<T, O>

Source§

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

Source§

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

Source§

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

Source§

impl<Tz> Display for rustmax::chrono::Date<Tz>
where Tz: TimeZone, <Tz as TimeZone>::Offset: Display,

Source§

impl<Tz> Display for rustmax::chrono::DateTime<Tz>
where Tz: TimeZone, <Tz as TimeZone>::Offset: Display,

1.0.0 · Source§

impl<W> Display for IntoInnerError<W>

Source§

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

Source§

impl<const N: usize> Display for TinyAsciiStr<N>

Source§

impl<const N: usize> Display for GetManyMutError<N>