pub struct ArrayTranspose<ArrayImpl, const NDIM: usize> { /* private fields */ }Expand description
Transpose array
Implementations§
Trait Implementations§
Source§impl<Item: Copy + Default, ArrayImpl, const NDIM: usize> BaseItem for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: BaseItem<Item = Item>,
impl<Item: Copy + Default, ArrayImpl, const NDIM: usize> BaseItem for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: BaseItem<Item = Item>,
Source§impl<ArrayImpl, const NDIM: usize> ContainerType for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: ContainerType,
impl<ArrayImpl, const NDIM: usize> ContainerType for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: ContainerType,
Source§type Type = <ArrayImpl as ContainerType>::Type
type Type = <ArrayImpl as ContainerType>::Type
The type for the container.
Source§fn type_as_str(&self) -> &'static str
fn type_as_str(&self) -> &'static str
Returns the type hint for the container as string ref.
Source§impl<ArrayImpl: Shape<NDIM>, const NDIM: usize> Shape<NDIM> for ArrayTranspose<ArrayImpl, NDIM>
impl<ArrayImpl: Shape<NDIM>, const NDIM: usize> Shape<NDIM> for ArrayTranspose<ArrayImpl, NDIM>
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessByRef for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByRef<NDIM> + Shape<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessByRef for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByRef<NDIM> + Shape<NDIM>,
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessByValue for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByValue<NDIM> + Shape<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessByValue for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByValue<NDIM> + Shape<NDIM>,
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessMut for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessMut<NDIM> + Shape<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandom1DAccessMut for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessMut<NDIM> + Shape<NDIM>,
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessByRef<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByRef<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessByRef<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByRef<NDIM>,
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessByValue<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByValue<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessByValue<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessByValue<NDIM>,
Source§impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessMut<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessMut<NDIM>,
impl<ArrayImpl, const NDIM: usize> UnsafeRandomAccessMut<NDIM> for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: UnsafeRandomAccessMut<NDIM>,
Auto Trait Implementations§
impl<ArrayImpl, const NDIM: usize> Freeze for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: Freeze,
impl<ArrayImpl, const NDIM: usize> RefUnwindSafe for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: RefUnwindSafe,
impl<ArrayImpl, const NDIM: usize> Send for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: Send,
impl<ArrayImpl, const NDIM: usize> Sync for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: Sync,
impl<ArrayImpl, const NDIM: usize> Unpin for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: Unpin,
impl<ArrayImpl, const NDIM: usize> UnwindSafe for ArrayTranspose<ArrayImpl, NDIM>where
ArrayImpl: 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
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