Trait kernel::fmt::Display

1.0.0 · source ·
pub(crate) 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 embedded_hal::digital::ErrorKind

source§

impl Display for embedded_hal::i2c::ErrorKind

source§

impl Display for NoAcknowledgeSource

source§

impl Display for embedded_hal::pwm::ErrorKind

source§

impl Display for embedded_hal::serial::ErrorKind

source§

impl Display for embedded_hal::spi::ErrorKind

source§

impl Display for TimerError

source§

impl Display for TryAcquireError

source§

impl Display for WaitError

source§

impl Display for postcard::error::Error

source§

impl Display for DecodeError

source§

impl Display for EncodeError

source§

impl Display for Variant

source§

impl Display for RegistrationError

source§

impl Display for UserHandlerError

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.0.0 · source§

impl Display for VarError

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

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 Point

source§

impl Display for Size

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 TaskId

source§

impl Display for Instant

source§

impl Display for Elapsed

source§

impl Display for Closed

source§

impl Display for MetaId

source§

impl Display for num_traits::ParseFloatError

source§

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

source§

impl Display for tracing_core::dispatch::SetGlobalDefaultError

source§

impl Display for tracing_core::field::Field

source§

impl Display for tracing_core::field::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 tracing_core::metadata::ParseLevelFilterError

source§

impl Display for uuid::error::Error

source§

impl Display for Braced

source§

impl Display for Hyphenated

source§

impl Display for Simple

source§

impl Display for Urn

source§

impl Display for Uuid

source§

impl Display for kernel::serial_trace::field::Field

source§

impl Display for kernel::serial_trace::field::FieldSet

source§

impl Display for kernel::serial_trace::metadata::LevelFilter

source§

impl Display for kernel::serial_trace::metadata::ParseLevelError

source§

impl Display for kernel::serial_trace::metadata::ParseLevelFilterError

source§

impl Display for kernel::serial_trace::Level

source§

impl Display for kernel::serial_trace::subscriber::SetGlobalDefaultError

source§

impl Display for I2cError

source§

impl Display for Modifiers

source§

impl Display for kernel::services::sdmmc::Error

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for 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 alloc::string::String

1.28.0 · source§

impl Display for LayoutError

source§

impl Display for AllocError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for core::ascii::EscapeDefault

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.17.0 · source§

impl Display for FromBytesWithNulError

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 ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicInfo<'_>

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

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

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 RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for kernel::fmt::Error

source§

impl Display for dyn Value

source§

impl Display for dyn Value

source§

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

source§

impl<'a> Display for tracing_core::field::ValueSet<'a>

source§

impl<'a> Display for kernel::serial_trace::field::ValueSet<'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 dyn Expected + 'a

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, 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 SpinMutexGuard<'a, T>
where T: Display + ?Sized,

source§

impl<'a, T> Display for spin::mutex::MutexGuard<'a, T>
where T: Display + ?Sized,

source§

impl<'rwlock, T> Display for spin::rwlock::RwLockReadGuard<'rwlock, T>
where T: Display + ?Sized,

source§

impl<'rwlock, T, R> Display for RwLockUpgradableGuard<'rwlock, T, R>
where T: Display + ?Sized,

source§

impl<'rwlock, T, R> Display for spin::rwlock::RwLockWriteGuard<'rwlock, T, R>
where T: Display + ?Sized,

1.0.0 · source§

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

source§

impl<D> Display for ConnectError<D>

source§

impl<D> Display for UserConnectError<D>

source§

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

source§

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

source§

impl<E> Display for mycelium_util::io::error::Error<E>
where E: Error + 'static,

source§

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

source§

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

source§

impl<P> Display for heapless::pool::singleton::arc::Arc<P>
where P: Pool, <P as Pool>::Data: Display,

source§

impl<P> Display for heapless::pool::singleton::Box<P>
where P: Pool, <P as Pool>::Data: Display,

1.33.0 · source§

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

1.0.0 · source§

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

1.0.0 · source§

impl<T> Display for TryLockError<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 Round<T>
where T: Display,

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 heapless::pool::Box<T>
where T: Display,

source§

impl<T> Display for JoinError<T>

source§

impl<T> Display for TryInitError<T>

source§

impl<T> Display for FmtOption<'_, T>
where T: Display,

source§

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

source§

impl<T> Display for kernel::serial_trace::field::DisplayValue<T>
where T: Display,

source§

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

1.20.0 · source§

impl<T> Display for 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 std::sync::mpsc::SendError<T>

source§

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

1.20.0 · source§

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

source§

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

source§

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

1.20.0 · source§

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

1.20.0 · source§

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

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,

1.0.0 · source§

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

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, Lock> Display for maitake_sync::blocking::mutex::MutexGuard<'_, T, Lock>
where T: Display, Lock: RawMutex,

source§

impl<T, Lock> Display for maitake_sync::blocking::rwlock::RwLockReadGuard<'_, T, Lock>
where T: Display + ?Sized, Lock: RawRwLock,

source§

impl<T, Lock> Display for maitake_sync::blocking::rwlock::RwLockWriteGuard<'_, T, Lock>
where T: Display + ?Sized, Lock: RawRwLock,

1.0.0 · source§

impl<W> Display for IntoInnerError<W>

source§

impl<const N: usize> Display for heapless::string::String<N>

source§

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

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

impl Display for Reset

impl Display for Style

impl Display for Error

impl Display for Error

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

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

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

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

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

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

impl<M, T, O> Display for BitRef<'_, M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

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

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

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

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

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

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

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

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

impl<T> Display for MisalignError<T>

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

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

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

impl Display for Utf8Path

impl<'a> Display for Utf8Component<'a>

impl<'a> Display for Utf8PrefixComponent<'a>

impl Display for Weekday

impl Display for Utc

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

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

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

impl Display for Arg

impl Display for Command

impl Display for Str

impl Display for Id

impl<F: ErrorFormatter> Display for Error<F>

impl Display for Value

impl Display for Field

impl Display for Location

impl<T> Display for SendTimeoutError<T>

impl<T> Display for TrySendError<T>

impl<T> Display for SendError<T>

impl<T: Display> Display for CachePadded<T>

impl<T: ?Sized + Display> Display for ShardedLockReadGuard<'_, T>

impl Display for Error

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

impl Display for Error

impl Display for DwAccess

impl Display for DwAddr

impl Display for DwAt

impl Display for DwAte

impl Display for DwCc

impl Display for DwCfa

impl Display for DwDs

impl Display for DwDsc

impl Display for DwEhPe

impl Display for DwEnd

impl Display for DwForm

impl Display for DwId

impl Display for DwIdx

impl Display for DwInl

impl Display for DwLang

impl Display for DwLle

impl Display for DwLnct

impl Display for DwLne

impl Display for DwLns

impl Display for DwMacro

impl Display for DwOp

impl Display for DwOrd

impl Display for DwRle

impl Display for DwSect

impl Display for DwSectV2

impl Display for DwTag

impl Display for DwUt

impl Display for DwVis

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

impl Display for Header

impl Display for Error

impl Display for Reason

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

impl<T: AsRef<str>> Display for AsKebabCase<T>

impl<T: AsRef<str>> Display for AsSnakeCase<T>

impl<T: AsRef<str>> Display for AsTitleCase<T>

impl<T: AsRef<str>> Display for AsTrainCase<T>

impl Display for Method

impl Display for Error

impl Display for Scheme

impl Display for Uri

impl<T> Display for Port<T>

impl Display for Error

impl Display for Error

impl Display for HttpDate

impl Display for Error

impl Display for Error

impl Display for Duration

impl Display for Name

impl Display for Error

impl Display for Errors

impl Display for Error

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

impl<'a, I, F> Display for FormatWith<'a, I, F>
where I: Iterator, F: FnMut(I::Item, &mut dyn FnMut(&dyn Display) -> Result) -> Result,

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

impl Display for Error

impl Display for LogTag

impl Display for Level

impl Display for Error

impl Display for Report

impl Display for Mime

impl<'a> Display for Name<'a>

impl Display for Type

impl Display for Error

impl<W: Display> Display for Error<W>

impl Display for Trap

impl Display for Cfg

impl Display for Param

impl Display for BuffSize

impl Display for Cfg

impl Display for BootMode

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

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

impl Display for BigInt

impl Display for Error

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

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

impl<I: Display> Display for Error<I>

impl<I: Display> Display for VerboseError<I>

impl Display for Infix

impl Display for Prefix

impl Display for Suffix

impl<'a> Display for AnsiString<'a>

impl<'a> Display for AnsiStrings<'a>

impl<T: Display + Clone + Integer> Display for Ratio<T>

impl Display for Error

impl Display for BigNum

impl Display for Error

impl Display for Error

impl<S: Debug> Display for HandshakeError<S>

impl<'a, Color: Color, T: Display> Display for BgColorDisplay<'a, Color, T>

impl<'a, Color: Color, T: Display> Display for FgColorDisplay<'a, Color, T>

impl<'a, Color: DynColor, T: Display> Display for BgDynColorDisplay<'a, Color, T>

impl<'a, Color: DynColor, T: Display> Display for FgDynColorDisplay<'a, Color, T>

impl<'a, Fg: Color, Bg: Color, T: Display> Display for ComboColorDisplay<'a, Fg, Bg, T>

impl<'a, T: Display> Display for BlinkDisplay<'a, T>

impl<'a, T: Display> Display for BlinkFastDisplay<'a, T>

impl<'a, T: Display> Display for BoldDisplay<'a, T>

impl<'a, T: Display> Display for DimDisplay<'a, T>

impl<'a, T: Display> Display for HiddenDisplay<'a, T>

impl<'a, T: Display> Display for ItalicDisplay<'a, T>

impl<'a, T: Display> Display for ReversedDisplay<'a, T>

impl<'a, T: Display> Display for StrikeThroughDisplay<'a, T>

impl<'a, T: Display> Display for UnderlineDisplay<'a, T>

impl<T, U> Display for StyledList<T, U>
where T: AsRef<[U]>, U: IsStyled,

impl<T: Display> Display for Styled<T>

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

impl Display for BlendOp

impl Display for Group

impl Display for Ident

impl Display for LexError

impl Display for Literal

impl Display for Punct

impl Display for Duration

impl Display for Error

impl Display for Error

impl Display for Regex

impl Display for Regex

impl Display for Ast

impl Display for Error

impl Display for Error

impl Display for Error

impl Display for Hir

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

impl Display for Errno

impl Display for Error

impl Display for Keycode

impl Display for Scancode

impl Display for Guid

impl Display for SdlError

impl Display for Version

impl Display for Value

impl Display for Error

impl Display for Number

impl<F> Display for PersistError<F>

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

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

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

impl Display for Elapsed

impl Display for Error

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

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

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

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

impl<T> Display for SetError<T>

impl<T> Display for SendTimeoutError<T>

impl<T> Display for TrySendError<T>

impl<T> Display for SendError<T>

impl<T> Display for SendError<T>

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

impl<T> Display for SendError<T>

impl<T: ?Sized + Display> Display for MutexGuard<'_, T>

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

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

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

impl Display for Elapsed

impl<T> Display for PollSendError<T>

impl Display for Value

impl Display for Error

impl Display for Error

impl Display for Table

impl Display for Offset

impl Display for Date

impl Display for Datetime

impl Display for Time

impl Display for Item

impl Display for Value

impl Display for Error

impl Display for Error

impl Display for Array

impl Display for Document

impl Display for Key

impl Display for Table

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

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

impl Display for Code

impl Display for Status

impl Display for Error

impl<VE: ValueEncoding> Display for MetadataKey<VE>

impl Display for Discover

impl Display for Closed

impl Display for Elapsed

impl Display for None

impl<K> Display for Failed<K>

impl Display for BadName

impl Display for Targets

impl Display for Error

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

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

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

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

impl Display for Url

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

impl Display for LzwError

impl Display for BStr

impl Display for Bytes

impl Display for Range

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

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

impl<I: Clone + Display> Display for InputError<I>

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

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

impl<I: Clone + Display, C: Display> Display for VerboseError<I, C>

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

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

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

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

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

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

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

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

impl<O: ByteOrder> Display for F32<O>

impl<O: ByteOrder> Display for F64<O>

impl<O: ByteOrder> Display for I128<O>

impl<O: ByteOrder> Display for I16<O>

impl<O: ByteOrder> Display for I32<O>

impl<O: ByteOrder> Display for I64<O>

impl<O: ByteOrder> Display for U128<O>

impl<O: ByteOrder> Display for U16<O>

impl<O: ByteOrder> Display for U32<O>

impl<O: ByteOrder> Display for U64<O>

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

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

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