Trait Backward

Source
pub trait Backward {
    type Output;

    // Required method
    fn backward(&self) -> Self::Output;
}
Expand description

Backward describes an object capable of backward propagation.

Required Associated Types§

Required Methods§

Source

fn backward(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<S> Backward for Option<S>
where S: Backward,

Source§

type Output = Option<<S as Backward>::Output>

Source§

fn backward(&self) -> Self::Output

Implementors§