pub trait UpstreamActor: Send + 'static {
// Required method
fn start(self, reporter: impl Reporter<Activity = Event>) -> Handle<()>;
}Expand description
An actor that can be started with reporters that receive consensus RPC events.
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.