pub enum TerminalCandidateAuthority {
AuthorExclusion(AuthorExclusionActivationLocator),
MembershipGrantRevocation {
grant_id: MembershipGrantId,
membership: StoreMembershipStateRef,
activation_commit: StoreBatchCommitRef,
activation_head: StoreDeviceHeadRef,
},
DependencyRetraction(VerifiedDependencyRetractionAuthority),
}Variants§
AuthorExclusion(AuthorExclusionActivationLocator)
MembershipGrantRevocation
Fields
§
grant_id: MembershipGrantId§
membership: StoreMembershipStateRef§
activation_commit: StoreBatchCommitRef§
activation_head: StoreDeviceHeadRefDependencyRetraction(VerifiedDependencyRetractionAuthority)
Trait Implementations§
Source§impl Clone for TerminalCandidateAuthority
impl Clone for TerminalCandidateAuthority
Source§fn clone(&self) -> TerminalCandidateAuthority
fn clone(&self) -> TerminalCandidateAuthority
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TerminalCandidateAuthority
impl RefUnwindSafe for TerminalCandidateAuthority
impl Send for TerminalCandidateAuthority
impl Sync for TerminalCandidateAuthority
impl Unpin for TerminalCandidateAuthority
impl UnsafeUnpin for TerminalCandidateAuthority
impl UnwindSafe for TerminalCandidateAuthority
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