pub trait Receiver<T> {
// Required method
fn recipient(&self) -> Recipient<T>;
}Expand description
A factory trait for recipients
This trait is blanket implemented for all ActorRefFactory
implementations where the message type is From<T>.