[][src]Struct maxim::system::RemoteInfo

pub struct RemoteInfo {
    pub system_uuid: Uuid,
    pub sender: SeccSender<WireMessage>,
    pub receiver: SeccReceiver<WireMessage>,
    pub system_actor_aid: Aid,
    // some fields omitted
}

Information for communicating with a remote actor system.

Fields

system_uuid: Uuid

The UUID of the remote system.

sender: SeccSender<WireMessage>

The channel to use to send messages to the remote system.

receiver: SeccReceiver<WireMessage>

The channel to use to receive messages from the remote system.

system_actor_aid: Aid

The AID to the system actor for the remote system.

Auto Trait Implementations

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> Erased for T

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

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

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>,