pub trait System:
Sized
+ Clone
+ Display
+ Send
+ Sync
+ GetName {
// Required method
fn plain(&self) -> PlainActor;
// Provided methods
fn name(&self) -> String { ... }
fn build(&mut self) -> Result<&mut Self, SystemError> { ... }
}Expand description
System interface
Required Methods§
fn plain(&self) -> PlainActor
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".