pub trait EffectorStream: Send + Sync {
    // Required methods
    fn next(&self) -> bool;
    fn push_effect(&mut self, eft: EffectKind) -> bool;
}

Required Methods§

source

fn next(&self) -> bool

source

fn push_effect(&mut self, eft: EffectKind) -> bool

Implementors§