pub enum SequenceAllocatingEnvelope {
Enrollment(EnrollmentEnvelope),
CredentialAttach(AttachEnvelope),
RecordAdmission(RecordAdmissionEnvelope),
}Expand description
Request alternatives that can exhaust optional sequence admission.
Variants§
Enrollment(EnrollmentEnvelope)
Enrollment.
CredentialAttach(AttachEnvelope)
Credential attach.
RecordAdmission(RecordAdmissionEnvelope)
Ordinary record admission.
Trait Implementations§
Source§impl Clone for SequenceAllocatingEnvelope
impl Clone for SequenceAllocatingEnvelope
Source§fn clone(&self) -> SequenceAllocatingEnvelope
fn clone(&self) -> SequenceAllocatingEnvelope
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 SequenceAllocatingEnvelope
impl Debug for SequenceAllocatingEnvelope
impl Eq for SequenceAllocatingEnvelope
impl StructuralPartialEq for SequenceAllocatingEnvelope
Auto Trait Implementations§
impl Freeze for SequenceAllocatingEnvelope
impl RefUnwindSafe for SequenceAllocatingEnvelope
impl Send for SequenceAllocatingEnvelope
impl Sync for SequenceAllocatingEnvelope
impl Unpin for SequenceAllocatingEnvelope
impl UnsafeUnpin for SequenceAllocatingEnvelope
impl UnwindSafe for SequenceAllocatingEnvelope
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