Trait cotton::prelude::fmt::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.

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§

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 AppDirError

source§

impl Display for DigestError

source§

impl Display for ExecError

source§

impl Display for FileDigestError

source§

impl Display for FileIoError

source§

impl Display for FileOwnerError

source§

impl Display for FromHexError

1.34.0 · source§

impl Display for Infallible

source§

impl Display for ModeError

source§

impl Display for ModeParseError

source§

impl Display for Weekday

1.60.0 · source§

impl Display for cotton::prelude::io::ErrorKind

1.7.0 · source§

impl Display for core::net::ip_addr::IpAddr

source§

impl Display for SocketAddr

source§

impl Display for VarError

1.15.0 · source§

impl Display for RecvTimeoutError

source§

impl Display for TryRecvError

source§

impl Display for time::ParseError

source§

impl Display for RoundingError

source§

impl Display for cradle::error::Error

source§

impl Display for exec::Error

source§

impl Display for Level

source§

impl Display for LevelFilter

source§

impl Display for regex::error::Error

source§

impl Display for RenderError

source§

impl Display for bool

source§

impl Display for char

source§

impl Display for f32

source§

impl Display for f64

source§

impl Display for i8

source§

impl Display for i16

source§

impl Display for i32

source§

impl Display for i64

source§

impl Display for i128

source§

impl Display for isize

source§

impl Display for !

source§

impl Display for str

source§

impl Display for u8

source§

impl Display for u16

source§

impl Display for u32

source§

impl Display for u64

source§

impl Display for u128

source§

impl Display for usize

source§

impl Display for cotton::prelude::io::Error

1.56.0 · source§

impl Display for WriterPanicked

source§

impl Display for Digest

source§

impl Display for ExitStatus

source§

impl Display for Group

source§

impl Display for Mode

source§

impl Display for Owner

source§

impl Display for FileTime

source§

impl Display for FixedOffset

source§

impl Display for MaybeStr

source§

impl Display for MaybeString

source§

impl Display for MkArgs

source§

impl Display for NaiveDate

The Display output of the naive date d is the same as d.format("%Y-%m-%d").

The string printed can be readily parsed via the parse method on str.

Example

use chrono::NaiveDate;

assert_eq!(format!("{}", NaiveDate::from_ymd_opt(2015,  9,  5).unwrap()), "2015-09-05");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(   0,  1,  1).unwrap()), "0000-01-01");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");

ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.

assert_eq!(format!("{}", NaiveDate::from_ymd_opt(   -1,  1,  1).unwrap()),  "-0001-01-01");
assert_eq!(format!("{}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");
source§

impl Display for NaiveDateTime

The Display output of the naive date and time dt is the same as dt.format("%Y-%m-%d %H:%M:%S%.f").

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

Example

use chrono::NaiveDate;

let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{}", dt), "2016-11-15 07:39:24");

Leap seconds may also be used.

let dt = NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{}", dt), "2015-06-30 23:59:60.500");
source§

impl Display for NaiveTime

The Display output of the naive time t is the same as t.format("%H:%M:%S%.f").

The string printed can be readily parsed via the parse method on str.

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

Example

use chrono::NaiveTime;

assert_eq!(format!("{}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()),              "23:56:04");
assert_eq!(format!("{}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),    "23:56:04.012");
assert_eq!(format!("{}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),  "23:56:04.001234");
assert_eq!(format!("{}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()), "23:56:04.000123456");

Leap seconds may also be used.

assert_eq!(format!("{}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()), "06:59:60.500");
source§

impl Display for cotton::prelude::ParseFloatError

source§

impl Display for Problem

source§

impl Display for cotton::prelude::Regex

source§

impl Display for StatusError

source§

impl Display for Utc

1.57.0 · source§

impl Display for TryReserveError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

source§

impl Display for NulError

source§

impl Display for FromUtf8Error

source§

impl Display for FromUtf16Error

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

source§

impl Display for core::net::ip_addr::Ipv4Addr

source§

impl Display for core::net::ip_addr::Ipv6Addr

Write an Ipv6Addr, conforming to the canonical style described by RFC 5952.

1.4.0 · source§

impl Display for AddrParseError

source§

impl Display for SocketAddrV4

source§

impl Display for SocketAddrV6

source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.34.0 · source§

impl Display for NonZeroI8

1.34.0 · source§

impl Display for NonZeroI16

1.34.0 · source§

impl Display for NonZeroI32

1.34.0 · source§

impl Display for NonZeroI64

1.34.0 · source§

impl Display for NonZeroI128

1.34.0 · source§

impl Display for NonZeroIsize

1.28.0 · source§

impl Display for NonZeroU8

1.28.0 · source§

impl Display for NonZeroU16

1.28.0 · source§

impl Display for NonZeroU32

1.28.0 · source§

impl Display for NonZeroU64

1.28.0 · source§

impl Display for NonZeroU128

1.28.0 · source§

impl Display for NonZeroUsize

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicInfo<'_>

source§

impl Display for ParseBoolError

source§

impl Display for Utf8Error

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.65.0 · source§

impl Display for Backtrace

source§

impl Display for JoinPathsError

source§

impl Display for Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

source§

impl Display for ExitStatusError

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 Duration

source§

impl Display for OutOfRangeError

source§

impl Display for SteadyTime

source§

impl Display for Infix

source§

impl Display for Prefix

source§

impl Display for Suffix

source§

impl Display for chrono::format::ParseError

source§

impl Display for ParseWeekdayError

source§

impl Display for InvalidBufferSize

source§

impl Display for InvalidOutputSize

source§

impl Display for ParseLevelError

source§

impl Display for SetLoggerError

source§

impl Display for num_traits::ParseFloatError

source§

impl Display for regex::re_bytes::Regex

source§

impl Display for MismatchedQuotes

source§

impl Display for PathPersistError

source§

impl Display for Arguments<'_>

source§

impl Display for cotton::prelude::fmt::Error

§

impl Display for Arg

§

impl Display for Ast

Print a display representation of this Ast.

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

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

§

impl Display for CaseFoldError

§

impl Display for ClearEnvError

§

impl Display for ClockId

§

impl Display for ColorChoice

§

impl Display for Command

§

impl Display for ContextKind

§

impl Display for ContextValue

§

impl Display for Errno

§

impl Display for Errno

§

impl Display for Errno

§

impl Display for Errno

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for ErrorKind

§

impl Display for ErrorKind

§

impl Display for ErrorKind

§

impl Display for GetTimezoneError

§

impl Display for Gid

§

impl Display for Hir

Print a display representation of this Hir.

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

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

§

impl Display for Id

§

impl Display for InetAddr

§

impl Display for InvalidLength

§

impl Display for IpAddr

§

impl Display for Ipv4Addr

§

impl Display for Ipv6Addr

§

impl Display for LinkAddr

§

impl Display for MatchesError

§

impl Display for ParseColorError

§

impl Display for Pid

§

impl Display for Signal

§

impl Display for SockAddr

§

impl Display for SockaddrIn

§

impl Display for SockaddrIn6

§

impl Display for SockaddrStorage

§

impl Display for Str

§

impl Display for StrSimError

§

impl Display for StyledStr

Color-unaware printing. Never uses coloring.

§

impl Display for SysControlAddr

§

impl Display for TimeSpec

§

impl Display for TimeVal

§

impl Display for Uid

§

impl Display for UnicodeWordError

§

impl Display for UnixAddr

§

impl Display for ValueRange

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 TmFmt<'a>

source§

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

source§

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

source§

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

source§

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

source§

impl<'a, I, F> Display for 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,

§

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

source§

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

source§

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

source§

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

source§

impl<E, C> Display for ErrorContext<E, C>where E: Display, C: Display,

source§

impl<F> Display for PersistError<F>

§

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

source§

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

source§

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

1.33.0 · source§

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

source§

impl<T> Display for TrySendError<T>

source§

impl<T> Display for TryLockError<T>

source§

impl<T> Display for &Twhere T: Display + ?Sized,

source§

impl<T> Display for &mut Twhere T: Display + ?Sized,

source§

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

source§

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

source§

impl<T> Display for Arc<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,

source§

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

1.10.0 · source§

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

source§

impl<T> Display for SendError<T>

1.20.0 · source§

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

source§

impl<T> Display for PoisonError<T>

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, A> Display for Box<T, A>where T: Display + ?Sized, A: Allocator,

source§

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

source§

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

source§

impl<W> Display for IntoInnerError<W>

source§

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