Trait Binds

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

Source

fn bind(ports: &Ports<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.

Implementors§