pub struct RowMut<'a, T, const GROUP: usize, const PACK: usize = 1> { /* private fields */ }Expand description
A mutable view of a single logical row in a block-transposed matrix.
Implementations§
Source§impl<T: Copy, const GROUP: usize, const PACK: usize> RowMut<'_, T, GROUP, PACK>
impl<T: Copy, const GROUP: usize, const PACK: usize> RowMut<'_, T, GROUP, PACK>
Trait Implementations§
Source§impl<'a, T: Debug, const GROUP: usize, const PACK: usize> Debug for RowMut<'a, T, GROUP, PACK>
impl<'a, T: Debug, const GROUP: usize, const PACK: usize> Debug for RowMut<'a, T, GROUP, PACK>
Auto Trait Implementations§
impl<'a, T, const GROUP: usize, const PACK: usize> Freeze for RowMut<'a, T, GROUP, PACK>
impl<'a, T, const GROUP: usize, const PACK: usize> RefUnwindSafe for RowMut<'a, T, GROUP, PACK>where
T: RefUnwindSafe,
impl<'a, T, const GROUP: usize, const PACK: usize> Send for RowMut<'a, T, GROUP, PACK>where
T: Send,
impl<'a, T, const GROUP: usize, const PACK: usize> Sync for RowMut<'a, T, GROUP, PACK>where
T: Sync,
impl<'a, T, const GROUP: usize, const PACK: usize> Unpin for RowMut<'a, T, GROUP, PACK>
impl<'a, T, const GROUP: usize, const PACK: usize> UnsafeUnpin for RowMut<'a, T, GROUP, PACK>
impl<'a, T, const GROUP: usize, const PACK: usize = 1> !UnwindSafe for RowMut<'a, T, GROUP, PACK>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more