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