pub struct RemoteActorRefImpl {
pub path: ActorPath,
pub endpoint_manager: EndpointManager,
pub registry: SerializerRegistry,
pub local_uid: u64,
}Fields§
§path: ActorPath§endpoint_manager: EndpointManager§registry: SerializerRegistry§local_uid: u64Local ActorSystem UID, written into sender_uid for replies.
Implementations§
Source§impl RemoteActorRefImpl
impl RemoteActorRefImpl
pub fn new( path: ActorPath, endpoint_manager: EndpointManager, registry: SerializerRegistry, local_uid: u64, ) -> Self
Trait Implementations§
Source§impl Debug for RemoteActorRefImpl
impl Debug for RemoteActorRefImpl
Source§impl RemoteRef for RemoteActorRefImpl
impl RemoteRef for RemoteActorRefImpl
fn path(&self) -> &ActorPath
fn tell_serialized(&self, msg: SerializedMessage)
fn tell_system(&self, msg: RemoteSystemMsg)
Auto Trait Implementations§
impl Freeze for RemoteActorRefImpl
impl !RefUnwindSafe for RemoteActorRefImpl
impl Send for RemoteActorRefImpl
impl Sync for RemoteActorRefImpl
impl Unpin for RemoteActorRefImpl
impl UnsafeUnpin for RemoteActorRefImpl
impl !UnwindSafe for RemoteActorRefImpl
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