#[repr(C)]pub struct CKeyValue<K, V> {
pub key: K,
pub val: V,
}
Fields§
§key: K
§val: V
Trait Implementations§
impl<K, V> Copy for CKeyValue<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for CKeyValue<K, V>
impl<K, V> RefUnwindSafe for CKeyValue<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for CKeyValue<K, V>
impl<K, V> Sync for CKeyValue<K, V>
impl<K, V> Unpin for CKeyValue<K, V>
impl<K, V> UnwindSafe for CKeyValue<K, V>where
K: UnwindSafe,
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