Skip to main content

ApplyLoad

Trait ApplyLoad 

Source
pub trait ApplyLoad<Out> {
    type Out2;
}

Required Associated Types§

Implementors§

Source§

impl<Out> ApplyLoad<Out> for NoLoad

Source§

type Out2 = Out

Source§

impl<Out, Prev, L> ApplyLoad<Out> for LoadChain<Prev, L>
where Prev: ApplyLoad<Out>, L: ApplyLoad<Prev::Out2>,

Source§

type Out2 = <L as ApplyLoad<<Prev as ApplyLoad<Out>>::Out2>>::Out2