pub struct SingleKV<V>(pub Key, pub V)
where
V: Value;
Expand description
Single pair Key
and Value
Tuple Fields§
§0: Key
§1: V
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for SingleKV<V>where
V: Freeze,
impl<V> RefUnwindSafe for SingleKV<V>where
V: RefUnwindSafe,
impl<V> Send for SingleKV<V>where
V: Send,
impl<V> Sync for SingleKV<V>where
V: Sync,
impl<V> Unpin for SingleKV<V>where
V: Unpin,
impl<V> UnwindSafe for SingleKV<V>where
V: 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