#[repr(transparent)]pub struct DisplayFromUpperHex<T: UpperHex>(pub T);Expand description
Provides Display formatting by using the result of invoking UpperHex formatting.
Tuple Fields§
§0: TImplementations§
Source§impl<T: UpperHex> DisplayFromUpperHex<T>
impl<T: UpperHex> DisplayFromUpperHex<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the adapter and returns the wrapped value.
Trait Implementations§
Source§impl<T: UpperHex> Display for DisplayFromUpperHex<T>
impl<T: UpperHex> Display for DisplayFromUpperHex<T>
Auto Trait Implementations§
impl<T> Freeze for DisplayFromUpperHex<T>where
T: Freeze,
impl<T> RefUnwindSafe for DisplayFromUpperHex<T>where
T: RefUnwindSafe,
impl<T> Send for DisplayFromUpperHex<T>where
T: Send,
impl<T> Sync for DisplayFromUpperHex<T>where
T: Sync,
impl<T> Unpin for DisplayFromUpperHex<T>where
T: Unpin,
impl<T> UnsafeUnpin for DisplayFromUpperHex<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for DisplayFromUpperHex<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more