pub enum InboundMode {
Auto,
Notify,
}Expand description
Receiver-side inbound treatment for a peer that is a verified member of a
trusted org. Phase 3’s policy table maps an org_did to one of these (or to
None = not in the receiver’s trusted set → default-deny).
Variants§
Auto
Option A (opt-in): pin ORG_VERIFIED with no operator tap.
Notify
Option B (default): enqueue one pending-inbound; one operator tap → ORG_VERIFIED.
Trait Implementations§
Source§impl Clone for InboundMode
impl Clone for InboundMode
Source§fn clone(&self) -> InboundMode
fn clone(&self) -> InboundMode
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 Copy for InboundMode
Source§impl Debug for InboundMode
impl Debug for InboundMode
impl Eq for InboundMode
Source§impl PartialEq for InboundMode
impl PartialEq for InboundMode
Source§fn eq(&self, other: &InboundMode) -> bool
fn eq(&self, other: &InboundMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InboundMode
Auto Trait Implementations§
impl Freeze for InboundMode
impl RefUnwindSafe for InboundMode
impl Send for InboundMode
impl Sync for InboundMode
impl Unpin for InboundMode
impl UnsafeUnpin for InboundMode
impl UnwindSafe for InboundMode
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.