pub enum ParticipantReferenceEnvelope {
CredentialAttach(AttachEnvelope),
Detach(DetachEnvelope),
ParticipantAck(ParticipantAckEnvelope),
Leave(LeaveEnvelope),
MarkerAck(MarkerAckEnvelope),
RecordAdmission(RecordAdmissionEnvelope),
}Expand description
Participant-naming envelopes eligible for unknown/retired classification.
Variants§
CredentialAttach(AttachEnvelope)
Credential attach.
Detach(DetachEnvelope)
Detach.
ParticipantAck(ParticipantAckEnvelope)
Continuous acknowledgement.
Leave(LeaveEnvelope)
Leave.
MarkerAck(MarkerAckEnvelope)
Marker acknowledgement.
RecordAdmission(RecordAdmissionEnvelope)
Ordinary record admission.
Trait Implementations§
Source§impl Clone for ParticipantReferenceEnvelope
impl Clone for ParticipantReferenceEnvelope
Source§fn clone(&self) -> ParticipantReferenceEnvelope
fn clone(&self) -> ParticipantReferenceEnvelope
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 ParticipantReferenceEnvelope
impl Debug for ParticipantReferenceEnvelope
impl Eq for ParticipantReferenceEnvelope
impl StructuralPartialEq for ParticipantReferenceEnvelope
Auto Trait Implementations§
impl Freeze for ParticipantReferenceEnvelope
impl RefUnwindSafe for ParticipantReferenceEnvelope
impl Send for ParticipantReferenceEnvelope
impl Sync for ParticipantReferenceEnvelope
impl Unpin for ParticipantReferenceEnvelope
impl UnsafeUnpin for ParticipantReferenceEnvelope
impl UnwindSafe for ParticipantReferenceEnvelope
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