Trait IntoBoxedGain

Source
pub trait IntoBoxedGain {
    // Required method
    fn into_boxed(self) -> BoxedGain;
}
Expand description

Trait to convert Gain to BoxedGain.

Required Methods§

Source

fn into_boxed(self) -> BoxedGain

Convert Gain to BoxedGain.

Implementors§

Source§

impl<G: Gain + 'static> IntoBoxedGain for G