Trait rai_core::nn::ApplyModule

source ·
pub trait ApplyModule<M>
where M: Module<Input = Self>,
{ // Provided method fn apply(&self, module: M) -> M::Output { ... } }

Provided Methods§

source

fn apply(&self, module: M) -> M::Output

Implementors§

source§

impl<T, M> ApplyModule<M> for T
where M: Module<Input = T>,