pub enum CredentialAttachCapacityDecision {
Commit(CredentialAttachCapacityCommit),
Respond(CredentialAttachResponse),
}Expand description
Exhaustive stage-8 credential-attach runtime-capacity result.
Variants§
Commit(CredentialAttachCapacityCommit)
All five receipt/provenance reservations may commit together.
Respond(CredentialAttachResponse)
Exact first-full receipt/provenance scope, bound to credential attach.
Trait Implementations§
Source§impl Clone for CredentialAttachCapacityDecision
impl Clone for CredentialAttachCapacityDecision
Source§fn clone(&self) -> CredentialAttachCapacityDecision
fn clone(&self) -> CredentialAttachCapacityDecision
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 moreimpl Eq for CredentialAttachCapacityDecision
impl StructuralPartialEq for CredentialAttachCapacityDecision
Auto Trait Implementations§
impl Freeze for CredentialAttachCapacityDecision
impl RefUnwindSafe for CredentialAttachCapacityDecision
impl Send for CredentialAttachCapacityDecision
impl Sync for CredentialAttachCapacityDecision
impl Unpin for CredentialAttachCapacityDecision
impl UnsafeUnpin for CredentialAttachCapacityDecision
impl UnwindSafe for CredentialAttachCapacityDecision
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