Trait tract_pulse::internal::fmt::Display   1.0.0[−][src]
Expand description
Format trait for an empty format, {}.
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
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, }));Implementations on Foreign Types
The Display implementation allows the std::error::Error implementation
impl Display for UnsupportedPlatformError
impl Display for UnsupportedPlatformError
Implementors
impl Display for CollectionAllocErr
impl Display for InputStoreSpec
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::fmt::Error
impl Display for UndeterminedSymbol
1.39.0[src]
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ascii::EscapeDefault
1.20.0[src]
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeDebug
1.16.0[src]
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeDefault
1.16.0[src]
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeUnicode
Write an Ipv6Addr, conforming to the canonical style described by RFC 5952.
impl Display for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::num::ParseFloatError
impl<'_, B> Display for Cow<'_, B> where
    B: Display + ToOwned + ?Sized,
    <B as ToOwned>::Owned: Display, 
1.34.0[src]
impl<'a> Display for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDebug<'a>
1.34.0[src]
impl<'a> Display for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDefault<'a>
1.34.0[src]
impl<'a> Display for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeUnicode<'a>
Format the array using Display and apply the formatting parameters used
to each element.
The array is shown in multiline style.