pub struct ActorRegisterCommand { /* private fields */ }Expand description
Semantic command for remote actor registration.
Implementations§
Source§impl ActorRegisterCommand
impl ActorRegisterCommand
Sourcepub fn new(
sequence: u64,
registration: ActorRegistration,
timestamp: u64,
) -> Self
pub fn new( sequence: u64, registration: ActorRegistration, timestamp: u64, ) -> Self
Creates a new actor-register command.
Sourcepub fn registration(&self) -> &ActorRegistration
pub fn registration(&self) -> &ActorRegistration
Returns the actor registration.
Trait Implementations§
Source§impl Clone for ActorRegisterCommand
impl Clone for ActorRegisterCommand
Source§fn clone(&self) -> ActorRegisterCommand
fn clone(&self) -> ActorRegisterCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActorRegisterCommand
impl Debug for ActorRegisterCommand
Source§impl PartialEq for ActorRegisterCommand
impl PartialEq for ActorRegisterCommand
impl Eq for ActorRegisterCommand
impl StructuralPartialEq for ActorRegisterCommand
Auto Trait Implementations§
impl Freeze for ActorRegisterCommand
impl RefUnwindSafe for ActorRegisterCommand
impl Send for ActorRegisterCommand
impl Sync for ActorRegisterCommand
impl Unpin for ActorRegisterCommand
impl UnsafeUnpin for ActorRegisterCommand
impl UnwindSafe for ActorRegisterCommand
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