Trait NewCoeffect

Source
pub trait NewCoeffect {
    type Instance: Coeffect;

    // Required method
    fn new_coeffect(&self) -> Self::Instance;
}

Required Associated Types§

Required Methods§

Source

fn new_coeffect(&self) -> Self::Instance

Implementors§

Source§

impl<E: 'static> NewCoeffect for Dispatcher<E>

Source§

impl<S: 'static> NewCoeffect for Db<S>