[][src]Enum quix::process::Pid

pub enum Pid<A: Actor + ProcessDispatch> {
    Local {
        id: Uuid,
        addr: Addr<A>,
    },
    Remote(Uuid),
}

Global process identifier. This can be used to send messages to actors on different nodes.

Variants

Local

Fields of Local

id: Uuidaddr: Addr<A>
Remote(Uuid)

Implementations

impl<A: Actor + ProcessDispatch> Pid<A>[src]

pub fn local_addr(&self) -> Option<Addr<A>>[src]

pub fn id(&self) -> Uuid[src]

pub fn send<M>(&self, m: M) -> PidRequest<A, M>

Notable traits for PidRequest<A, M>

impl<A: Actor, M: Message> Future for PidRequest<A, M> where
    A: Actor + Handler<M>,
    A::Context: ToEnvelope<A, M>,
    M: Message + Service + Unpin + Send,
    M::Result: Send
type Output = Result<M::Result, DispatchError>;
where
    A: Handler<M>,
    A::Context: ToEnvelope<A, M>,
    M: Message + Service + Send,
    M::Result: Send
[src]

pub fn do_send<M>(&self, m: M) where
    A: Handler<M>,
    A::Context: ToEnvelope<A, M>,
    M: Message + Service + Send,
    M::Result: Send
[src]

pub fn recipient<M>(&self) -> PidRecipient<M> where
    A: Handler<M>,
    A::Context: ToEnvelope<A, M>,
    M: Message + Service + Send + 'static,
    M::Result: Send
[src]

Trait Implementations

impl<A: Actor + ProcessDispatch> Clone for Pid<A>[src]

Auto Trait Implementations

impl<A> !RefUnwindSafe for Pid<A>

impl<A> Send for Pid<A>

impl<A> Sync for Pid<A>

impl<A> Unpin for Pid<A>

impl<A> !UnwindSafe for Pid<A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,