Struct wyz::fmt::FmtDisplay[][src]

#[repr(transparent)]pub struct FmtDisplay<T: Display>(pub T);

Forwards a type’s Display formatting implementation to Debug.

Trait Implementations

impl<T: Display> AsMut<T> for FmtDisplay<T>[src]

impl<T: Display> AsRef<T> for FmtDisplay<T>[src]

impl<T: Display + Binary> Binary for FmtDisplay<T>[src]

impl<T: Display> Debug for FmtDisplay<T>[src]

impl<T: Display> Deref for FmtDisplay<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Display> DerefMut for FmtDisplay<T>[src]

impl<T: Display> Display for FmtDisplay<T>[src]

impl<T: Display + LowerExp> LowerExp for FmtDisplay<T>[src]

impl<T: Display + LowerHex> LowerHex for FmtDisplay<T>[src]

impl<T: Display + Octal> Octal for FmtDisplay<T>[src]

impl<T: Display + Pointer> Pointer for FmtDisplay<T>[src]

impl<T: Display + UpperExp> UpperExp for FmtDisplay<T>[src]

impl<T: Display + UpperHex> UpperHex for FmtDisplay<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for FmtDisplay<T> where
    T: RefUnwindSafe

impl<T> Send for FmtDisplay<T> where
    T: Send

impl<T> Sync for FmtDisplay<T> where
    T: Sync

impl<T> Unpin for FmtDisplay<T> where
    T: Unpin

impl<T> UnwindSafe for FmtDisplay<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T[src]

impl<T> FmtForward for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized
[src]

impl<T> Tap for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> TryConv for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.