pub trait CellLifecycle {
// Required method
fn ready(&self, msg: ReadyMsg) -> impl Future<Output = ReadyAck> + Send + '_;
}Expand description
Cell lifecycle service implemented by the host.
Cells call these methods to signal readiness states.
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.