[][src]Struct melange::backprop::variable::BackpropNode

pub struct BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback> { /* fields omitted */ }

Groups the value, gradient option and backpropagation closure as a sigle entity. Fields are public in the parent module (backprop).

Trait Implementations

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> Debug for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback> where
    T: Debug,
    S: Debug,
    C: Debug,
    L: Debug,
    P: Debug,
    Lgrad: Debug
[src]

Auto Trait Implementations

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> !RefUnwindSafe for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback>

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> !Send for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback>

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> !Sync for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback>

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> Unpin for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback> where
    C: Unpin,
    L: Unpin,
    Lgrad: Unpin,
    P: Unpin,
    S: Unpin,
    T: Unpin

impl<T, S, C, L, P, Lgrad, Cback, Lback, Pback> !UnwindSafe for BackpropNode<T, S, C, L, P, Lgrad, Cback, Lback, Pback>

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> Pointable for T

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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.