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 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 maitake_sync::spin::mutex::MutexGuard<'a, T>
where T: Display,

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 maitake_sync::spin::rwlock::RwLockReadGuard<'_, T>
where T: Display + ?Sized,

source§

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

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>

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>