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