Display

Trait Display 

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

§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<(), 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 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 core::slice::GetDisjointMutError

1.0.0 · Source§

impl Display for VarError

1.89.0 · Source§

impl Display for std::fs::TryLockError

1.60.0 · Source§

impl Display for std::io::error::ErrorKind

1.15.0 · Source§

impl Display for RecvTimeoutError

1.0.0 · Source§

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

Source§

impl Display for base16ct::error::Error

Source§

impl Display for DecodeError

Source§

impl Display for base64ct::errors::Error

Source§

impl Display for bs58::alphabet::Error

Source§

impl Display for bs58::decode::Error

Source§

impl Display for bs58::encode::Error

Source§

impl Display for byte_slice_cast::Error

Source§

impl Display for const_oid::error::Error

Source§

impl Display for der::error::ErrorKind

Source§

impl Display for Class

Source§

impl Display for Tag

Source§

impl Display for TagMode

Source§

impl Display for ed25519_zebra::error::Error

Source§

impl Display for gimli::read::Error

Source§

impl Display for HexToArrayError

Source§

impl Display for HexToBytesError

Source§

impl Display for hex::error::FromHexError

Source§

impl Display for httparse::Error

Source§

impl Display for indexmap::GetDisjointMutError

Source§

impl Display for libsecp256k1_core::error::Error

Source§

impl Display for log::Level

Source§

impl Display for log::LevelFilter

Source§

impl Display for num_format::error_kind::ErrorKind

Source§

impl Display for parity_bip39::Error

Source§

impl Display for Language

Source§

impl Display for parity_wasm::elements::Error

Source§

impl Display for Instruction

Source§

impl Display for ValueType

Source§

impl Display for password_hash::errors::Error

Source§

impl Display for InvalidValue

Source§

impl Display for pkcs8::error::Error

Source§

impl Display for CommittedCandidateReceiptError

Source§

impl Display for prometheus::errors::Error

Source§

impl Display for BernoulliError

Source§

impl Display for WeightedError

Source§

impl Display for StartError

Source§

impl Display for regex_syntax::ast::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::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::ast::ErrorKind

Source§

impl Display for regex_syntax::error::Error

Source§

impl Display for regex_syntax::error::Error

Source§

impl Display for regex_syntax::hir::ErrorKind

Source§

impl Display for regex_syntax::hir::ErrorKind

Source§

impl Display for regex::error::Error

Source§

impl Display for rustc_hex::FromHexError

Available on crate feature std only.
Source§

impl Display for MultiSignatureStage

Source§

impl Display for SignatureError

Source§

impl Display for sec1::error::Error

Source§

impl Display for secp256k1::Error

Source§

impl Display for serde_json::value::Value

Source§

impl Display for CollectionAllocErr

Source§

impl Display for ApiError

Source§

impl Display for sp_core::address_uri::Error

Source§

impl Display for DeriveError

Source§

impl Display for PublicError

Source§

impl Display for SecretStringError

Source§

impl Display for sp_inherents::Error

Source§

impl Display for sp_keystore::Error

Source§

impl Display for MultiSigner

Available on crate feature std only.
Source§

impl Display for TransactionValidityError

Available on crate feature std only.
Source§

impl Display for ExecutionError

Source§

impl Display for StateVersion

Source§

impl Display for InherentError

Source§

impl Display for sp_version::embed::Error

Source§

impl Display for spki::error::Error

Source§

impl Display for Ss58AddressFormatRegistry

Available on crate feature std only.
Source§

impl Display for substrate_prometheus_endpoint::Error

Source§

impl Display for time::error::Error

Source§

impl Display for time::error::format::Format

Source§

impl Display for InvalidFormatDescription

Source§

impl Display for Month

Source§

impl Display for Weekday

Source§

impl Display for AnyDelimiterCodecError

Source§

impl Display for LinesCodecError

Source§

impl Display for TryAcquireError

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl Display for FromDecStrErr

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

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 BridgeMessageDispatchError

Source§

impl Display for xcm_emulator::ParaId

Source§

impl Display for Weight

Source§

impl Display for ByteString

Source§

impl Display for UnorderedKeyError

1.57.0 · Source§

impl Display for alloc::collections::TryReserveError

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 FromUtf8Error

1.0.0 · Source§

impl Display for FromUtf16Error

1.0.0 · Source§

impl Display for String

1.28.0 · Source§

impl Display for LayoutError

Source§

impl Display for core::alloc::AllocError

1.35.0 · Source§

impl Display for core::array::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.20.0 · Source§

impl Display for ParseCharError

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.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.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.4.0 · Source§

impl Display for AddrParseError

1.0.0 · Source§

impl Display for SocketAddrV4

1.0.0 · Source§

impl Display for SocketAddrV6

1.0.0 · Source§

impl Display for core::num::dec2flt::ParseFloatError

1.0.0 · Source§

impl Display for core::num::error::ParseIntError

1.34.0 · Source§

impl Display for core::num::error::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.65.0 · Source§

impl Display for Backtrace

1.0.0 · Source§

impl Display for JoinPathsError

1.87.0 · Source§

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

1.56.0 · Source§

impl Display for WriterPanicked

1.0.0 · Source§

impl Display for std::io::error::Error

1.26.0 · Source§

impl Display for PanicHookInfo<'_>

1.0.0 · Source§

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

Source§

impl Display for NormalizeError

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 std::sync::mpsc::RecvError

Source§

impl Display for WouldBlock

1.26.0 · Source§

impl Display for AccessError

1.8.0 · Source§

impl Display for SystemTimeError

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 allocator_api2::stable::alloc::AllocError

Source§

impl Display for base16ct::display::HexDisplay<'_>

Source§

impl Display for InvalidEncodingError

Source§

impl Display for InvalidLengthError

Source§

impl Display for bitcoin_hashes::hash160::Hash

Source§

impl Display for bitcoin_hashes::ripemd160::Hash

Source§

impl Display for bitcoin_hashes::sha1::Hash

Source§

impl Display for bitcoin_hashes::sha256::Hash

Source§

impl Display for Midstate

Source§

impl Display for bitcoin_hashes::sha256d::Hash

Source§

impl Display for bitcoin_hashes::sha512::Hash

Source§

impl Display for bitcoin_hashes::sha512_256::Hash

Source§

impl Display for bitcoin_hashes::siphash24::Hash

Source§

impl Display for FromSliceError

Source§

impl Display for block_buffer::Error

Source§

impl Display for TryGetError

Source§

impl Display for ObjectIdentifier

Source§

impl Display for Limb

Source§

impl Display for InvalidLength

Source§

impl Display for BmpString

Source§

impl Display for Ia5String

Source§

impl Display for PrintableString

Source§

impl Display for TeletexString

Source§

impl Display for DateTime

Source§

impl Display for der::error::Error

Source§

impl Display for Length

Source§

impl Display for TagNumber

Source§

impl Display for deranged::ParseIntError

Source§

impl Display for deranged::TryFromIntError

Source§

impl Display for digest::errors::InvalidOutputSize

Source§

impl Display for MacError

Source§

impl Display for InvalidBufferSize

Source§

impl Display for digest::InvalidOutputSize

Source§

impl Display for ed25519::Signature

Source§

impl Display for elliptic_curve::error::Error

Source§

impl Display for futures_channel::mpsc::SendError

Source§

impl Display for futures_channel::mpsc::TryRecvError

Source§

impl Display for Canceled

Source§

impl Display for EnterError

Source§

impl Display for SpawnError

Source§

impl Display for Aborted

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 h2::error::Error

Source§

impl Display for Reason

Source§

impl Display for LengthLimitError

Source§

impl Display for http::error::Error

Source§

impl Display for MaxSizeReached

Source§

impl Display for HeaderName

Source§

impl Display for InvalidHeaderName

Source§

impl Display for InvalidHeaderValue

Source§

impl Display for ToStrError

Source§

impl Display for InvalidMethod

Source§

impl Display for Method

Source§

impl Display for InvalidStatusCode

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 Authority

Source§

impl Display for PathAndQuery

Source§

impl Display for Scheme

Source§

impl Display for InvalidUri

Source§

impl Display for InvalidUriParts

Source§

impl Display for Uri

Source§

impl Display for InvalidChunkSize

Source§

impl Display for HttpDate

Source§

impl Display for httpdate::Error

Source§

impl Display for hyper::error::Error

Source§

impl Display for indexmap::TryReserveError

Source§

impl Display for jam_codec::error::Error

Source§

impl Display for log::ParseLevelError

Source§

impl Display for SetLoggerError

Source§

impl Display for Infix

Source§

impl Display for Prefix

Source§

impl Display for Suffix

Source§

impl Display for Buffer

Source§

impl Display for num_format::error::Error

Source§

impl Display for num_traits::ParseFloatError

Source§

impl Display for object::read::Error

Source§

impl Display for Mnemonic

Source§

impl Display for parity_scale_codec::error::Error

Source§

impl Display for Output

Source§

impl Display for ParamsString

Source§

impl Display for SaltString

Source§

impl Display for PasswordHashString

Available on crate feature alloc only.
Source§

impl Display for CandidateHash

Available on crate feature std only.
Source§

impl Display for ValidationCodeHash

Source§

impl Display for ExecutorParamsHash

Source§

impl Display for ExecutorParamsPrepHash

Source§

impl Display for H128

Source§

impl Display for H160

Source§

impl Display for H256

Source§

impl Display for H384

Source§

impl Display for H512

Source§

impl Display for H768

Source§

impl Display for U128

Source§

impl Display for U256

Source§

impl Display for U512

Source§

impl Display for ReadError

Source§

impl Display for rand_core::error::Error

Source§

impl Display for rand_core::error::Error

Source§

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

Source§

impl Display for regex_automata::error::Error

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

Available on crate feature alloc only.
Source§

impl Display for DeserializeError

Source§

impl Display for SerializeError

Source§

impl Display for regex_syntax::ast::Error

Source§

impl Display for regex_syntax::ast::Error

Source§

impl Display for regex_syntax::hir::Error

Source§

impl Display for regex_syntax::hir::Error

Source§

impl Display for regex_syntax::hir::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 regex_syntax::hir::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 regex_syntax::unicode::CaseFoldError

Source§

impl Display for regex_syntax::unicode::CaseFoldError

Source§

impl Display for regex_syntax::unicode::UnicodeWordError

Source§

impl Display for regex_syntax::unicode::UnicodeWordError

Source§

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

Source§

impl Display for regex::regex::string::Regex

Source§

impl Display for Path<PortableForm>

Source§

impl Display for SerializedSignature

Source§

impl Display for secp256k1::ecdsa::Signature

Source§

impl Display for ElligatorSwift

Source§

impl Display for InvalidParityValue

Source§

impl Display for PublicKey

Source§

impl Display for XOnlyPublicKey

Source§

impl Display for OutOfRangeError

Source§

impl Display for secp256k1::schnorr::Signature

Source§

impl Display for Message

Source§

impl Display for serde_core::de::value::Error

Source§

impl Display for serde_json::error::Error

Source§

impl Display for Number

Source§

impl Display for signature::error::Error

Source§

impl Display for sp_application_crypto::ecdsa::app::Public

Source§

impl Display for sp_application_crypto::ed25519::app::Public

Source§

impl Display for sp_application_crypto::sr25519::app::Public

Source§

impl Display for FixedI64

Source§

impl Display for FixedI128

Source§

impl Display for FixedU64

Source§

impl Display for FixedU128

Source§

impl Display for Slot

Available on crate feature std only.
Source§

impl Display for AccountId32

Available on crate feature std only.
Source§

impl Display for CodeNotFound

Source§

impl Display for Timestamp

Available on crate feature std only.
Source§

impl Display for RuntimeVersion

Available on crate feature std only.
Source§

impl Display for Ss58AddressFormat

Available on crate feature std only.

Display the name of the address format (not the description).

Source§

impl Display for ss58_registry::error::ParseError

Available on crate feature std only.
Source§

impl Display for TokenAmount

Available on crate feature std only.
Source§

impl Display for Date

Source§

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.

Source§

impl Display for ComponentRange

Source§

impl Display for ConversionRange

Source§

impl Display for DifferentVariant

Source§

impl Display for InvalidVariant

Source§

impl Display for OffsetDateTime

Source§

impl Display for PrimitiveDateTime

Source§

impl Display for Time

Source§

impl Display for UtcOffset

Source§

impl Display for tinyvec::arrayvec::TryFromSliceError

Source§

impl Display for LengthDelimitedCodecError

Source§

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

Source§

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

Source§

impl Display for TryCurrentError

Source§

impl Display for JoinError

Source§

impl Display for tokio::runtime::task::id::Id

Source§

impl Display for AcquireError

Source§

impl Display for tokio::sync::mutex::TryLockError

Source§

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

Source§

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

Source§

impl Display for Elapsed

Source§

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

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 tracing_subscriber::filter::directive::ParseError

Source§

impl Display for Directive

Source§

impl Display for BadName

Source§

impl Display for EnvFilter

Source§

impl Display for FromEnvError

Source§

impl Display for Targets

Source§

impl Display for tracing_subscriber::reload::Error

Source§

impl Display for TryInitError

Source§

impl Display for uint::uint::FromHexError

Source§

impl Display for FromStrRadixErr

Source§

impl Display for NullPtrError

1.0.0 · Source§

impl Display for Arguments<'_>

1.0.0 · Source§

impl Display for xcm_emulator::fmt::Error

Source§

impl Display for dyn Expected + '_

Source§

impl Display for dyn Value

Source§

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

Available on crate feature std only.
Source§

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

1.60.0 · Source§

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

1.34.0 · Source§

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

1.34.0 · Source§

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

1.34.0 · Source§

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

Source§

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

Source§

impl<'a> Display for Base64Display<'a>

Source§

impl<'a> Display for Ia5StringRef<'a>

Source§

impl<'a> Display for PrintableStringRef<'a>

Source§

impl<'a> Display for TeletexStringRef<'a>

Source§

impl<'a> Display for Utf8StringRef<'a>

Source§

impl<'a> Display for VideotexStringRef<'a>

Source§

impl<'a> Display for DisplayByteSlice<'a>

Source§

impl<'a> Display for AnsiGenericString<'a, str>

Source§

impl<'a> Display for AnsiGenericStrings<'a, str>

Source§

impl<'a> Display for DecimalStr<'a>

Source§

impl<'a> Display for InfinityStr<'a>

Source§

impl<'a> Display for MinusSignStr<'a>

Source§

impl<'a> Display for NanStr<'a>

Source§

impl<'a> Display for PlusSignStr<'a>

Source§

impl<'a> Display for SeparatorStr<'a>

Source§

impl<'a> Display for Ident<'a>

Source§

impl<'a> Display for Salt<'a>

Source§

impl<'a> Display for PasswordHash<'a>

Source§

impl<'a> Display for password_hash::value::Value<'a>

Source§

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

Source§

impl<'a> Display for sp_core::hexdisplay::HexDisplay<'a>

Source§

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

Source§

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

Source§

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

Source§

impl<'a, K, V, A> Display for alloc::collections::btree::map::entry::OccupiedError<'a, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

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

Source§

impl<'a, K, V, S, A> Display for hashbrown::map::OccupiedError<'a, K, V, S, A>
where K: Debug, 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 tokio::sync::mutex::MappedMutexGuard<'a, T>
where T: Display + ?Sized,

Source§

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

Source§

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

Source§

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

Source§

impl<'a, T, O> Display for Domain<'a, Const, T, O>
where O: BitOrder, T: BitStore,

Source§

impl<'s, T> Display for SliceVec<'s, T>
where T: Display,

Source§

impl<A> Display for TinyVec<A>
where A: Array, <A as Array>::Item: Display,

Source§

impl<A> Display for ArrayVec<A>
where A: Array, <A as Array>::Item: Display,

Source§

impl<A, B> Display for DisplayArray<A, B>

Source§

impl<A, O> Display for BitArray<A, O>
where O: BitOrder, A: BitViewSized,

Source§

impl<AccountId, AccountIndex> Display for MultiAddress<AccountId, AccountIndex>
where AccountId: Debug, AccountIndex: Debug,

Available on crate feature std only.
1.0.0 · Source§

impl<B> Display for Cow<'_, B>
where B: Display + ToOwned + ?Sized, <B as ToOwned>::Owned: Display,

Source§

impl<Block> Display for BlockId<Block>
where Block: Block,

Available on crate feature std only.
Source§

impl<C> Display for ecdsa::Signature<C>

Source§

impl<C> Display for NonZeroScalar<C>
where C: CurveArithmetic,

Source§

impl<C> Display for ScalarPrimitive<C>
where C: Curve,

Source§

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

Source§

impl<E> Display for FormattedFields<E>
where E: ?Sized,

1.94.0 · Source§

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

Source§

impl<H> Display for sp_trie::error::Error<H>
where Box<TrieError<H, Error<H>>>: Debug,

Source§

impl<H, CodecError> Display for sp_trie::trie_codec::Error<H, CodecError>
where H: Debug, Box<TrieError<H, CodecError>>: Debug,

Source§

impl<HO, CE> Display for trie_db::proof::verify::Error<HO, CE>
where HO: Debug, CE: Error,

Available on crate feature std only.
Source§

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

Source§

impl<I> Display for Decompositions<I>
where I: Iterator<Item = char> + Clone,

Source§

impl<I> Display for Recompositions<I>
where I: Iterator<Item = char> + Clone,

Source§

impl<I> Display for Replacements<I>
where I: Iterator<Item = char> + Clone,

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<M, T, O> Display for BitRef<'_, M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

Available on non-tarpaulin_include only.
1.33.0 · Source§

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

Source§

impl<R> Display for BitEnd<R>
where R: BitRegister,

Source§

impl<R> Display for BitIdx<R>
where R: BitRegister,

Source§

impl<R> Display for BitIdxError<R>
where R: BitRegister,

Available on non-tarpaulin_include only.
Source§

impl<R> Display for BitMask<R>
where R: BitRegister,

Source§

impl<R> Display for BitPos<R>
where R: BitRegister,

Source§

impl<R> Display for BitSel<R>
where R: BitRegister,

Source§

impl<R, Offset> Display for LineInstruction<R, Offset>
where R: Reader<Offset = Offset>, Offset: ReaderOffset,

Source§

impl<Size> Display for EncodedPoint<Size>
where Size: ModulusSize,

Source§

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

1.0.0 · Source§

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

1.0.0 · Source§

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

Source§

impl<T> Display for BitPtrError<T>
where T: BitStore,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for BitSpanError<T>
where T: BitStore,

Available on non-tarpaulin_include only.
Source§

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

Available on crate feature time only.
Source§

impl<T> Display for tokio::sync::mpsc::error::TrySendError<T>

Source§

impl<T> Display for SetError<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 ThinBox<T>
where T: Display + ?Sized,

1.20.0 · Source§

impl<T> Display for core::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 core::num::nonzero::NonZero<T>

1.74.0 · Source§

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

1.10.0 · Source§

impl<T> Display for core::num::wrapping::Wrapping<T>
where T: Display,

1.0.0 · Source§

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

Source§

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

Source§

impl<T> Display for std::sync::nonpoison::mutex::MutexGuard<'_, T>
where T: Display + ?Sized,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

1.20.0 · Source§

impl<T> Display for std::sync::poison::mutex::MutexGuard<'_, T>
where T: Display + ?Sized,

Source§

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

Source§

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

1.20.0 · Source§

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

1.20.0 · Source§

impl<T> Display for std::sync::poison::rwlock::RwLockWriteGuard<'_, 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,

Source§

impl<T> Display for CapacityError<T>

Source§

impl<T> Display for Hmac<T>
where T: Hash,

Source§

impl<T> Display for bitcoin_hashes::sha256t::Hash<T>
where T: Tag,

Source§

impl<T> Display for MisalignError<T>

Available on non-tarpaulin_include only.
Source§

impl<T> Display for crypto_bigint::non_zero::NonZero<T>
where T: Display + Zero,

Source§

impl<T> Display for crypto_bigint::wrapping::Wrapping<T>
where T: Display,

Source§

impl<T> Display for FromBitsError<T>
where T: BitFlag + Debug,

Source§

impl<T> Display for BitFlags<T>
where T: BitFlag + Debug,

Source§

impl<T> Display for futures_channel::mpsc::TrySendError<T>

Source§

impl<T> Display for futures_util::io::split::ReuniteError<T>

Source§

impl<T> Display for Port<T>

Source§

impl<T> Display for PollSendError<T>

Source§

impl<T> Display for AsyncFdTryNewError<T>

Source§

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

Source§

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

Source§

impl<T> Display for tokio::sync::mutex::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 tokio::sync::watch::error::SendError<T>

Source§

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

Source§

impl<T> Display for FmtBinary<T>
where T: Binary + Display,

Available on non-tarpaulin_include only.
Source§

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

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtList<T>
where &'a T: for<'a> IntoIterator, <&'a T as IntoIterator>::Item: for<'a> Display,

Source§

impl<T> Display for FmtLowerExp<T>
where T: LowerExp + Display,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtLowerHex<T>
where T: LowerHex + Display,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtOctal<T>
where T: Octal + Display,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtPointer<T>
where T: Pointer + Display,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtUpperExp<T>
where T: UpperExp + Display,

Available on non-tarpaulin_include only.
Source§

impl<T> Display for FmtUpperHex<T>
where T: UpperHex + Display,

Available on non-tarpaulin_include only.
Source§

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

1.0.0 · Source§

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

1.0.0 · Source§

impl<T, A> Display for alloc::boxed::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,

Source§

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

Source§

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

Source§

impl<T, A> Display for allocator_api2::stable::boxed::Box<T, A>
where T: Display + ?Sized, A: Allocator,

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, D> Display for TypeWithDefault<T, D>
where T: Display, D: Get<T>,

Source§

impl<T, E> Display for TrieError<T, E>
where T: MaybeDebug, E: MaybeDebug,

Available on crate feature std only.
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 futures_util::stream::stream::split::ReuniteError<T, Item>

Source§

impl<T, O> Display for BitBox<T, O>
where O: BitOrder, T: BitStore,

Source§

impl<T, O> Display for BitSlice<T, O>
where T: BitStore, O: BitOrder,

Source§

impl<T, O> Display for BitVec<T, O>
where O: BitOrder, T: BitStore,

Source§

impl<T, U> Display for OwnedMappedMutexGuard<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<T, U> Display for OwnedRwLockMappedWriteGuard<T, U>
where U: Display + ?Sized, T: ?Sized,

1.0.0 · Source§

impl<W> Display for IntoInnerError<W>

Source§

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

Source§

impl<const LIMBS: usize> Display for Uint<LIMBS>

Source§

impl<const MIN: i8, const MAX: i8> Display for RangedI8<MIN, MAX>

Source§

impl<const MIN: i16, const MAX: i16> Display for RangedI16<MIN, MAX>

Source§

impl<const MIN: i32, const MAX: i32> Display for RangedI32<MIN, MAX>

Source§

impl<const MIN: i64, const MAX: i64> Display for RangedI64<MIN, MAX>

Source§

impl<const MIN: i128, const MAX: i128> Display for RangedI128<MIN, MAX>

Source§

impl<const MIN: isize, const MAX: isize> Display for RangedIsize<MIN, MAX>

Source§

impl<const MIN: u8, const MAX: u8> Display for RangedU8<MIN, MAX>

Source§

impl<const MIN: u16, const MAX: u16> Display for RangedU16<MIN, MAX>

Source§

impl<const MIN: u32, const MAX: u32> Display for RangedU32<MIN, MAX>

Source§

impl<const MIN: u64, const MAX: u64> Display for RangedU64<MIN, MAX>

Source§

impl<const MIN: u128, const MAX: u128> Display for RangedU128<MIN, MAX>

Source§

impl<const MIN: usize, const MAX: usize> Display for RangedUsize<MIN, MAX>

Source§

impl<const N: usize, SubTag> Display for CryptoBytes<N, (PublicTag, SubTag)>
where CryptoBytes<N, (PublicTag, SubTag)>: CryptoType,

Available on crate feature std only.
Source§

impl<const SIZE: usize> Display for WriteBuffer<SIZE>