Skip to main content

System

Trait System 

Source
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§

Source

fn plain(&self) -> PlainActor

Provided Methods§

Source

fn name(&self) -> String

Source

fn build(&mut self) -> Result<&mut Self, SystemError>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§