pub struct Addr<A: Actor + ?Sized> { /* private fields */ }

Implementations

Create address for an actor, specifying its inbox size. Accepts Capacity or usize.

Methods from Deref<Target = Recipient<M>>

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

Returns the “default value” for a type. Read more

The resulting type after dereferencing.

Dereferences the value.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.