pub struct CS<T, const N: usize>(pub [T; N]);
Tuple Fields§
§0: [T; N]
Implementations§
Trait Implementations§
Source§impl<'de, T, const N: usize> Deserialize<'de> for CS<T, N>
impl<'de, T, const N: usize> Deserialize<'de> for CS<T, N>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T, const N: usize> IntoIterator for CS<T, N>
impl<T, const N: usize> IntoIterator for CS<T, N>
impl<T: Eq, const N: usize> Eq for CS<T, N>
impl<T, const N: usize> StructuralPartialEq for CS<T, N>
Auto Trait Implementations§
impl<T, const N: usize> Freeze for CS<T, N>where
T: Freeze,
impl<T, const N: usize> RefUnwindSafe for CS<T, N>where
T: RefUnwindSafe,
impl<T, const N: usize> Send for CS<T, N>where
T: Send,
impl<T, const N: usize> Sync for CS<T, N>where
T: Sync,
impl<T, const N: usize> Unpin for CS<T, N>where
T: Unpin,
impl<T, const N: usize> UnwindSafe for CS<T, N>where
T: 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