pub enum DataType<'a, T>where
T: DataTraits,{
Owned(Vec<InnerDataType<T>>),
Borrowed(&'a [InnerDataType<T>]),
MutBorrowed(&'a mut [InnerDataType<T>]),
}
Expand description
Enum used to identify the type of data the view is holding.
This should eventually be removed. See the view module documentation for more information.
The policy used to implement the PartialEq trait is based on Kokkos’
equal
algorithm.
Essentially, it corresponds to equality by reference instead of equality by value.
Variants§
Owned(Vec<InnerDataType<T>>)
The view owns the data.
Borrowed(&'a [InnerDataType<T>])
The view borrows the data and can only read it.
MutBorrowed(&'a mut [InnerDataType<T>])
The view borrows the data and can both read and modify it.
Trait Implementations§
Source§impl<T> PartialEq for DataType<'_, T>where
T: DataTraits,
impl<T> PartialEq for DataType<'_, T>where
T: DataTraits,
Auto Trait Implementations§
impl<'a, T> Freeze for DataType<'a, T>
impl<'a, T> RefUnwindSafe for DataType<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for DataType<'a, T>
impl<'a, T> Sync for DataType<'a, T>where
T: Sync,
impl<'a, T> Unpin for DataType<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for DataType<'a, T>
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