pub struct ActorTerminated { /* private fields */ }Implementations§
Source§impl ActorTerminated
impl ActorTerminated
pub fn actor_ref(&self) -> &BoxedActorRef
Trait Implementations§
Source§impl Clone for ActorTerminated
impl Clone for ActorTerminated
Source§fn clone(&self) -> ActorTerminated
fn clone(&self) -> ActorTerminated
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<BoxedActorRef> for ActorTerminated
impl From<BoxedActorRef> for ActorTerminated
Source§fn from(value: BoxedActorRef) -> Self
fn from(value: BoxedActorRef) -> Self
Converts to this type from the input type.
Source§impl Message for ActorTerminated
impl Message for ActorTerminated
type Result = ()
fn into_envelope( self, envelope_type: EnvelopeType, ) -> Result<Envelope<Self>, MessageWrapErr>
fn as_bytes(&self) -> Result<Vec<u8>, MessageWrapErr>
fn from_envelope(envelope: Envelope<Self>) -> Result<Self, MessageUnwrapErr>
fn from_bytes(_: Vec<u8>) -> Result<Self, MessageUnwrapErr>
fn read_remote_result(_: Vec<u8>) -> Result<Self::Result, MessageUnwrapErr>
fn write_remote_result(_res: Self::Result) -> Result<Vec<u8>, MessageWrapErr>
fn name(&self) -> &'static str
fn type_name() -> &'static strwhere
Self: Sized,
Auto Trait Implementations§
impl !RefUnwindSafe for ActorTerminated
impl !UnwindSafe for ActorTerminated
impl Freeze for ActorTerminated
impl Send for ActorTerminated
impl Sync for ActorTerminated
impl Unpin for ActorTerminated
impl UnsafeUnpin for ActorTerminated
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