pub enum EnrollmentCapacityDecision {
Commit(EnrollmentCapacityCommit),
Respond(EnrollmentResponse),
}Expand description
Exhaustive stage-8 enrollment runtime-capacity result.
Variants§
Commit(EnrollmentCapacityCommit)
All seven reservations may commit together.
Respond(EnrollmentResponse)
Exact first-full identity or receipt scope, bound to enrollment.
Trait Implementations§
Source§impl Clone for EnrollmentCapacityDecision
impl Clone for EnrollmentCapacityDecision
Source§fn clone(&self) -> EnrollmentCapacityDecision
fn clone(&self) -> EnrollmentCapacityDecision
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 EnrollmentCapacityDecision
impl Debug for EnrollmentCapacityDecision
impl Eq for EnrollmentCapacityDecision
impl StructuralPartialEq for EnrollmentCapacityDecision
Auto Trait Implementations§
impl Freeze for EnrollmentCapacityDecision
impl RefUnwindSafe for EnrollmentCapacityDecision
impl Send for EnrollmentCapacityDecision
impl Sync for EnrollmentCapacityDecision
impl Unpin for EnrollmentCapacityDecision
impl UnsafeUnpin for EnrollmentCapacityDecision
impl UnwindSafe for EnrollmentCapacityDecision
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