[][src]Struct sealrs::actors::remoting::remote_actor_ref::RemoteActorRef

pub struct RemoteActorRef {
    pub rcid: u32,
    pub rarid: u32,
    pub path: TSafe<ActorPath>,
    pub net_controller: TSafe<dyn NetController + Send>,
}

Fields

rcid: u32

Remote connection id

rarid: u32

Remote ActorRef id

path: TSafe<ActorPath>net_controller: TSafe<dyn NetController + Send>

Network controller instance

Methods

impl RemoteActorRef[src]

pub fn new(
    rcid: u32,
    rarid: u32,
    path: TSafe<ActorPath>,
    net_controller: TSafe<dyn NetController + Send>
) -> RemoteActorRef
[src]

Trait Implementations

impl AbstractActorRef for RemoteActorRef[src]

impl PartialEq<RemoteActorRef> for RemoteActorRef[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for RemoteActorRef[src]

impl Display for RemoteActorRef[src]

impl Hash for RemoteActorRef[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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