pub struct CuArray<T, const N: usize> { /* private fields */ }
Expand description
Copper friendly wrapper for a fixed size array.
Implementations§
Trait Implementations§
Source§impl<'de, T, const N: usize> Deserialize<'de> for CuArray<T, N>where
T: Deserialize<'de>,
impl<'de, T, const N: usize> Deserialize<'de> for CuArray<T, N>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CuArray<T, N>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CuArray<T, N>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<T, const N: usize> Freeze for CuArray<T, N>where
T: Freeze,
impl<T, const N: usize> RefUnwindSafe for CuArray<T, N>where
T: RefUnwindSafe,
impl<T, const N: usize> Send for CuArray<T, N>where
T: Send,
impl<T, const N: usize> Sync for CuArray<T, N>where
T: Sync,
impl<T, const N: usize> Unpin for CuArray<T, N>where
T: Unpin,
impl<T, const N: usize> UnwindSafe for CuArray<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