Trait RemoteActor

Source
pub trait RemoteActor:
    Named
    + Send
    + Sync { }
Expand description

RemoteActor is a marker trait for types that can be used as remote actor references. All Actors are thus referencable; but other types may also implement this in order to separately specify actor interfaces.

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.

Implementations on Foreign Types§

Source§

impl RemoteActor for TestActor

Source§

impl RemoteActor for CommActor

Source§

impl RemoteActor for TestActor

Source§

impl RemoteActor for LogClientActor

Source§

impl RemoteActor for LogForwardActor

Source§

impl RemoteActor for MeshAgent

Source§

impl RemoteActor for EmptyActor

Implementors§