pub trait ActivatorTrait {
// Required methods
fn activate(&self);
fn ack(&self);
fn register<S: Scope>(&self, scope: &mut S, path: Rc<[usize]>);
}
Expand description
Generic activator behavior
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.