pub enum PairAction {
AutoOrgVerified {
org_did: String,
},
NotifyOrgEligible {
org_did: String,
},
Manual,
}Expand description
The action P1b takes for a received card.
Variants§
AutoOrgVerified
Pin ORG_VERIFIED with no tap — the matched org opted into Option A.
NotifyOrgEligible
Enqueue one pending-inbound annotated org-vouched (Option B default);
one operator tap promotes to ORG_VERIFIED.
Manual
No verified vouch from a trusted org — fall through to today’s bilateral manual pending flow (default-deny).
Trait Implementations§
Source§impl Clone for PairAction
impl Clone for PairAction
Source§fn clone(&self) -> PairAction
fn clone(&self) -> PairAction
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 PairAction
impl Debug for PairAction
impl Eq for PairAction
Source§impl PartialEq for PairAction
impl PartialEq for PairAction
Source§fn eq(&self, other: &PairAction) -> bool
fn eq(&self, other: &PairAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PairAction
Auto Trait Implementations§
impl Freeze for PairAction
impl RefUnwindSafe for PairAction
impl Send for PairAction
impl Sync for PairAction
impl Unpin for PairAction
impl UnsafeUnpin for PairAction
impl UnwindSafe for PairAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.