pub trait ActivatorTrait {
// Required methods
fn activate(&self);
fn ack(&self);
fn register<'scope, T: Timestamp>(
&self,
scope: Scope<'scope, T>,
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".