Struct gad::matrix::MatProp[][src]

pub struct MatProp {
    pub transposed: bool,
    pub conjugated: bool,
}

Whether a matrix should be transposed and/or conjugated before applying a matrix operation.

Fields

transposed: boolconjugated: bool

Implementations

impl MatProp[src]

pub fn new() -> Self[src]

pub fn transpose(self) -> Self[src]

pub fn conjugate(self) -> Self[src]

Trait Implementations

impl Clone for MatProp[src]

impl Copy for MatProp[src]

impl Debug for MatProp[src]

impl Default for MatProp[src]

impl Eq for MatProp[src]

impl PartialEq<MatProp> for MatProp[src]

impl StructuralEq for MatProp[src]

impl StructuralPartialEq for MatProp[src]

Auto Trait Implementations

impl RefUnwindSafe for MatProp

impl Send for MatProp

impl Sync for MatProp

impl Unpin for MatProp

impl UnwindSafe for MatProp

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.