Trait parsel::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.

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

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

source§

impl Display for parsel::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.

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

impl Display for 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.

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for 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 Empty

source§

impl Display for Eof

source§

impl Display for parsel::ast::Ident

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

source§

impl Display for LitBool

source§

impl Display for LitByte

source§

impl Display for LitByteStr

source§

impl Display for LitChar

source§

impl Display for parsel::ast::LitFloat

source§

impl Display for parsel::ast::LitInt

source§

impl Display for LitStr

source§

impl Display for LitUint

source§

impl Display for NotEof

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

1.0.0 · source§

impl Display for core::fmt::Error

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

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

impl Display for ParseBoolError

1.0.0 · source§

impl Display for Utf8Error

1.66.0 · source§

impl Display for TryFromFloatSecsError

source§

impl Display for ExpandError

1.29.0 · source§

impl Display for 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 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 proc_macro::LexError

1.29.0 · source§

impl Display for 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 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 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.

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

source§

impl Display for num_traits::ParseFloatError

source§

impl Display for FloatIsNan

source§

impl Display for 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 proc_macro2::LexError

source§

impl Display for proc_macro2::Literal

source§

impl Display for proc_macro2::Punct

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

source§

impl Display for Lifetime

source§

impl Display for syn::lit::LitFloat

source§

impl Display for syn::lit::LitInt

source§

impl Display for parsel::Error

source§

impl Display for parsel::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 SpanDisplay

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 ParseBuffer<'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,

1.0.0 · source§

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

source§

impl<E> Display for ParseNotNanError<E>
where E: Display,

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<K> Display for CustomIdent<K>

source§

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

source§

impl<O, L> Display for RightAssoc<O, L>
where O: ToTokens, L: ToTokens,

source§

impl<O, R> Display for LeftAssoc<O, R>
where O: ToTokens, R: ToTokens,

source§

impl<P, T> Display for Maybe<P, T>
where P: ToTokens, T: ToTokens,

1.33.0 · source§

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

1.0.0 · source§

impl<T> Display for 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 Any<T>
where T: ToTokens,

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 SendError<T>

source§

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

1.20.0 · source§

impl<T> Display for 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 MappedRwLockReadGuard<'_, T>
where T: Display + ?Sized,

source§

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

1.20.0 · source§

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

1.20.0 · source§

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

source§

impl<T> Display for OrderedFloat<T>
where T: FloatCore + Display,

source§

impl<T> Display for NotNan<T>
where T: FloatCore + Display,

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, P> Display for Punctuated<T, P>
where T: ToTokens, P: ToTokens,

source§

impl<T, P> Display for Separated<T, P>
where T: ToTokens, P: ToTokens,

source§

impl<T: ToTokens> Display for Brace<T>

source§

impl<T: ToTokens> Display for Bracket<T>

source§

impl<T: ToTokens> Display for Paren<T>

1.0.0 · source§

impl<W> Display for IntoInnerError<W>

source§

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