[][src]Struct gp::autograd::Mul

pub struct Mul<X, Y> { /* fields omitted */ }

Trait Implementations

impl<X, Y> Grad for Mul<X, Y> where
    X: Grad,
    Y: Grad,
    X::Derivation: Mul<Y::Derivation>, 
[src]

type Derivation = <X::Derivation as Mul<Y::Derivation>>::Output

impl<X: Clone, Y: Clone> Clone for Mul<X, Y>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<X: Debug, Y: Debug> Debug for Mul<X, Y>[src]

Auto Trait Implementations

impl<X, Y> Unpin for Mul<X, Y> where
    X: Unpin,
    Y: Unpin

impl<X, Y> Sync for Mul<X, Y> where
    X: Sync,
    Y: Sync

impl<X, Y> Send for Mul<X, Y> where
    X: Send,
    Y: Send

impl<X, Y> UnwindSafe for Mul<X, Y> where
    X: UnwindSafe,
    Y: UnwindSafe

impl<X, Y> RefUnwindSafe for Mul<X, Y> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe

Blanket Implementations

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> From<T> for 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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,