Struct wyz::fmt::FmtBinary[][src]

#[repr(transparent)]pub struct FmtBinary<T: Binary>(pub T);

Forwards a type’s Binary formatting implementation to Debug.

Trait Implementations

impl<T: Binary> AsMut<T> for FmtBinary<T>[src]

impl<T: Binary> AsRef<T> for FmtBinary<T>[src]

impl<T: Binary> Binary for FmtBinary<T>[src]

impl<T: Binary> Debug for FmtBinary<T>[src]

impl<T: Binary> Deref for FmtBinary<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Binary> DerefMut for FmtBinary<T>[src]

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

impl<T: Binary + LowerExp> LowerExp for FmtBinary<T>[src]

impl<T: Binary + LowerHex> LowerHex for FmtBinary<T>[src]

impl<T: Binary + Octal> Octal for FmtBinary<T>[src]

impl<T: Binary + Pointer> Pointer for FmtBinary<T>[src]

impl<T: Binary + UpperExp> UpperExp for FmtBinary<T>[src]

impl<T: Binary + UpperHex> UpperHex for FmtBinary<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for FmtBinary<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.