pub struct DebugIgnore<T>(pub T)
where
T: ?Sized;Expand description
A wrapper for types that don’t implement Debug
Tuple Fields§
§0: TTrait Implementations§
Source§impl<T> Clone for DebugIgnore<T>where
T: Clone,
impl<T> Clone for DebugIgnore<T>where
T: Clone,
Source§fn clone(&self) -> DebugIgnore<T>
fn clone(&self) -> DebugIgnore<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for DebugIgnore<T>
impl<T> RefUnwindSafe for DebugIgnore<T>where
T: RefUnwindSafe + ?Sized,
impl<T> Send for DebugIgnore<T>
impl<T> Sync for DebugIgnore<T>
impl<T> Unpin for DebugIgnore<T>
impl<T> UnwindSafe for DebugIgnore<T>where
T: UnwindSafe + ?Sized,
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