pub struct Recipient<M> { /* private fields */ }
Expand description

Similar to Addr, but rather than pointing to a specific actor, it is typed for any actor that handles a given message-response type.

Implementations

Send a message to an actor. Returns SendError if the channel is full; does not block. See SendResultExt trait for convenient handling of errors.

Convert a Recipient<M> (or Addr<A> through Deref, where A::Message = M) into Recipient<N>, where message N can be converted into M.

In case of converting from Addr, this erases the type of the actor and only preserves type of the message, allowing you to make actors more independent of each other.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Send a message now. Convenience to wrap message in TimedMessage::Instant.

Send a message to be delivered later at a certain instant.

Schedule sending of message at fire_at plus at regular intervals from that point on.

Send a message to be delivered later after some time from now.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.