pub struct KvIterDebug<T>(/* private fields */);Expand description
IterDebug but styled with key-value formatting
Note that an iterator can only be debugged once, aim to wrap your iterator as late as possible, usually directly in the print / format statement.
Implementations§
Source§impl<T> KvIterDebug<T>
impl<T> KvIterDebug<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> !Freeze for KvIterDebug<T>
impl<T> !RefUnwindSafe for KvIterDebug<T>
impl<T> !Sync for KvIterDebug<T>
impl<T> Send for KvIterDebug<T>
impl<T> Unpin for KvIterDebug<T>
impl<T> UnsafeUnpin for KvIterDebug<T>
impl<T> UnwindSafe for KvIterDebug<T>
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