[][src]Enum rust_blas::math::Trans

pub enum Trans<A> {
    T(A),
    H(A),
}

Variants

T(A)
H(A)

Trait Implementations

impl<A> Deref for Trans<A>[src]

type Target = A

The resulting type after dereferencing.

impl<'a, T> Mul<&'a (dyn Matrix<T> + 'a)> for Trans<&'a dyn Matrix<T>> where
    T: Default + Gemm
[src]

type Output = Mat<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<&'a (dyn Vector<T> + 'a)> for Trans<&'a dyn Vector<T>> where
    T: Sized + Copy + Dot + Dotc
[src]

type Output = T

The resulting type after applying the * operator.

impl<'a, T> Mul<Trans<&'a (dyn Matrix<T> + 'a)>> for &'a dyn Matrix<T> where
    T: Default + Gemm
[src]

type Output = Mat<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<Trans<&'a (dyn Matrix<T> + 'a)>> for Trans<&'a dyn Matrix<T>> where
    T: Default + Gemm
[src]

type Output = Mat<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<Trans<&'a (dyn Vector<T> + 'a)>> for &'a dyn Vector<T> where
    T: Default + Ger + Gerc + Clone
[src]

type Output = Mat<T>

The resulting type after applying the * operator.

Auto Trait Implementations

impl<A> RefUnwindSafe for Trans<A> where
    A: RefUnwindSafe

impl<A> Send for Trans<A> where
    A: Send

impl<A> Sync for Trans<A> where
    A: Sync

impl<A> Unpin for Trans<A> where
    A: Unpin

impl<A> UnwindSafe for Trans<A> where
    A: UnwindSafe

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, 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.