pub enum Retired {
Enrollment {
request: EnrollmentEnvelope,
participant_id: ParticipantId,
retired_generation: Generation,
},
Participant {
request: ParticipantReferenceEnvelope,
retired_generation: Generation,
},
}Expand description
Tombstone classification, including enrollment’s additional participant id.
Variants§
Enrollment
Enrollment mapping resolved to a tombstone.
Fields
§
request: EnrollmentEnvelopeOriginal request envelope.
§
participant_id: ParticipantIdMapped permanent participant.
§
retired_generation: GenerationPermanent retired generation.
Participant
Participant-naming request resolved to its tombstone.
Fields
§
request: ParticipantReferenceEnvelopeExact triggering request envelope.
§
retired_generation: GenerationPermanent retired generation.
Trait Implementations§
impl Eq for Retired
impl StructuralPartialEq for Retired
Auto Trait Implementations§
impl Freeze for Retired
impl RefUnwindSafe for Retired
impl Send for Retired
impl Sync for Retired
impl Unpin for Retired
impl UnsafeUnpin for Retired
impl UnwindSafe for Retired
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