pub enum Op<T> {
NoOp(T),
Transpose(T),
}Expand description
Determines whether a matrix should be transposed in a given operation.
See the module-level documentation for the purpose of this enum.
Variants§
NoOp(T)
Indicates that the matrix should be used as-is.
Transpose(T)
Indicates that the matrix should be transposed.
Implementations§
Source§impl<T> Op<T>
impl<T> Op<T>
Sourcepub fn inner_ref(&self) -> &T
pub fn inner_ref(&self) -> &T
Returns a reference to the inner value that the operation applies to.
Sourcepub fn map_same_op<U, F: FnOnce(T) -> U>(self, f: F) -> Op<U>
pub fn map_same_op<U, F: FnOnce(T) -> U>(self, f: F) -> Op<U>
Transforms the inner value with the provided function, but preserves the operation.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the Op and returns the inner value.
Sourcepub fn transposed(self) -> Self
pub fn transposed(self) -> Self
Applies the transpose operation.
This operation follows the usual semantics of transposition. In particular, double transposition is equivalent to no transposition.
Trait Implementations§
impl<T: Copy> Copy for Op<T>
impl<T: Eq> Eq for Op<T>
impl<T> StructuralPartialEq for Op<T>
Auto Trait Implementations§
impl<T> Freeze for Op<T>where
T: Freeze,
impl<T> RefUnwindSafe for Op<T>where
T: RefUnwindSafe,
impl<T> Send for Op<T>where
T: Send,
impl<T> Sync for Op<T>where
T: Sync,
impl<T> Unpin for Op<T>where
T: Unpin,
impl<T> UnsafeUnpin for Op<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Op<T>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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.