Trait concision_core::traits::predict::Forward

source ·
pub trait Forward<T> {
    type Output;

    // Required method
    fn forward(&self, args: &T) -> Self::Output;
}
Expand description

Forward describes an object capable of forward propagation.

Required Associated Types§

Required Methods§

source

fn forward(&self, args: &T) -> Self::Output

Implementations on Foreign Types§

source§

impl<S, T> Forward<T> for Option<S>
where S: Forward<T, Output = T>, T: Clone,

§

type Output = T

source§

fn forward(&self, args: &T) -> Self::Output

Implementors§