pub struct RemoteGetActor<A>where
A: Actor + RemoteAddressable,{
pub session: ActorRef,
pub actor: ActorRef,
/* private fields */
}Expand description
A command which is used to get the address of an actor in a remote node.
Fields§
§session: ActorRef§actor: ActorRefImplementations§
Source§impl<A> RemoteGetActor<A>where
A: Actor + RemoteAddressable,
impl<A> RemoteGetActor<A>where
A: Actor + RemoteAddressable,
Sourcepub fn new(session: ActorRef, actor: ActorRef) -> Self
pub fn new(session: ActorRef, actor: ActorRef) -> Self
Constructs a new RemoteGetActor command for the actor type A.
Trait Implementations§
Source§impl<A> Debug for RemoteGetActor<A>
impl<A> Debug for RemoteGetActor<A>
Source§impl<A> Handler<RemoteGetActor<A>> for Nodewhere
A: Actor + RemoteAddressable,
impl<A> Handler<RemoteGetActor<A>> for Nodewhere
A: Actor + RemoteAddressable,
Source§type Result = FutureMessageResult<RemoteGetActor<A>>
type Result = FutureMessageResult<RemoteGetActor<A>>
The return type of the handler, which must implement
MessageResponse.Auto Trait Implementations§
impl<A> Freeze for RemoteGetActor<A>
impl<A> RefUnwindSafe for RemoteGetActor<A>
impl<A> Send for RemoteGetActor<A>
impl<A> Sync for RemoteGetActor<A>
impl<A> Unpin for RemoteGetActor<A>
impl<A> UnsafeUnpin for RemoteGetActor<A>
impl<A> UnwindSafe for RemoteGetActor<A>
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