pub enum BridgeWarrantPolicy {
SharedTrust,
Verify,
}Expand description
Policy for checking packet warrants at receive time.
Variants§
The receiver already trusts that it shares the sender’s books.
Verify
The receiver checks packet warrant content ids against its local books.
Trait Implementations§
Source§impl Clone for BridgeWarrantPolicy
impl Clone for BridgeWarrantPolicy
Source§fn clone(&self) -> BridgeWarrantPolicy
fn clone(&self) -> BridgeWarrantPolicy
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 BridgeWarrantPolicy
Source§impl Debug for BridgeWarrantPolicy
impl Debug for BridgeWarrantPolicy
impl Eq for BridgeWarrantPolicy
Source§impl PartialEq for BridgeWarrantPolicy
impl PartialEq for BridgeWarrantPolicy
impl StructuralPartialEq for BridgeWarrantPolicy
Auto Trait Implementations§
impl Freeze for BridgeWarrantPolicy
impl RefUnwindSafe for BridgeWarrantPolicy
impl Send for BridgeWarrantPolicy
impl Sync for BridgeWarrantPolicy
impl Unpin for BridgeWarrantPolicy
impl UnsafeUnpin for BridgeWarrantPolicy
impl UnwindSafe for BridgeWarrantPolicy
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