pub trait RemoteActor:
Named
+ Send
+ Sync { }
Expand description
RemoteActor is a marker trait for types that can be used as
remote actor references. All Actor
s 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.