pub enum ConversationContextEntry {
Sent(Envelope),
Received(Envelope),
ParticipantCrashed {
participant: ParticipantPid,
policy: CrashPolicy,
},
SupervisionFailed {
watcher: ParticipantPid,
reason: Option<ExitReason>,
},
}Expand description
Opaque conversation context accumulated by the actor.
Variants§
Sent(Envelope)
Envelope delivered to the conversation.
Received(Envelope)
Envelope delivered from the conversation to a receiver.
ParticipantCrashed
Participant crash handled according to the configured policy.
Fields
§
participant: ParticipantPidCrashed participant PID.
§
policy: CrashPolicyPolicy applied by the actor.
SupervisionFailed
The conversation’s supervision structure was violated: its exit watcher died while the conversation was live (nothing legitimate terminates the watcher externally). The conversation is failed and finalized in response, never continued unobserved.
Fields
§
watcher: ParticipantPidThe dead watcher’s PID.
§
reason: Option<ExitReason>EXIT reason carried by the watcher’s exit signal, when one was.
Trait Implementations§
Source§impl Clone for ConversationContextEntry
impl Clone for ConversationContextEntry
Source§fn clone(&self) -> ConversationContextEntry
fn clone(&self) -> ConversationContextEntry
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 Debug for ConversationContextEntry
impl Debug for ConversationContextEntry
impl Eq for ConversationContextEntry
Source§impl PartialEq for ConversationContextEntry
impl PartialEq for ConversationContextEntry
impl StructuralPartialEq for ConversationContextEntry
Auto Trait Implementations§
impl Freeze for ConversationContextEntry
impl RefUnwindSafe for ConversationContextEntry
impl Send for ConversationContextEntry
impl Sync for ConversationContextEntry
impl Unpin for ConversationContextEntry
impl UnsafeUnpin for ConversationContextEntry
impl UnwindSafe for ConversationContextEntry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.