pub struct RemoteInfo {
pub system_uuid: Uuid,
pub sender: SeccSender<WireMessage>,
pub receiver: SeccReceiver<WireMessage>,
pub system_actor_aid: Aid,
/* private fields */
}
Expand description
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§
impl Freeze for RemoteInfo
impl !RefUnwindSafe for RemoteInfo
impl Send for RemoteInfo
impl Sync for RemoteInfo
impl Unpin for RemoteInfo
impl !UnwindSafe for RemoteInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more