pub struct PairsArray<K, V, const N: usize>(pub [(K, V); N])
where
K: ToString,
V: Serialize;
Expand description
Tuple Fields§
§0: [(K, V); N]
Trait Implementations§
Auto Trait Implementations§
impl<K, V, const N: usize> Freeze for PairsArray<K, V, N>
impl<K, V, const N: usize> RefUnwindSafe for PairsArray<K, V, N>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, const N: usize> Send for PairsArray<K, V, N>
impl<K, V, const N: usize> Sync for PairsArray<K, V, N>
impl<K, V, const N: usize> Unpin for PairsArray<K, V, N>
impl<K, V, const N: usize> UnwindSafe for PairsArray<K, V, N>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