pub trait Binds<A: Actor>: RemoteActor {
// Required method
fn bind(ports: &Ports<A>);
}
Expand description
Binds determines how an actor’s ports are bound to a specific reference type.
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.