pub enum EquivocationDetection {
Sampled,
NonRepudiable,
}Expand description
Whether cross-operator equivocation detection is merely sampled or
non-repudiable. Until the gossip layer (W.3) lands, detection is Sampled —
a surface must say so rather than imply a guarantee it cannot make.
Variants§
Sampled
Best-effort monitoring; a hidden split-view may go undetected.
NonRepudiable
Cross-operator detection with non-repudiable evidence is live.
Trait Implementations§
Source§impl Clone for EquivocationDetection
impl Clone for EquivocationDetection
Source§fn clone(&self) -> EquivocationDetection
fn clone(&self) -> EquivocationDetection
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 EquivocationDetection
Source§impl Debug for EquivocationDetection
impl Debug for EquivocationDetection
Source§impl<'de> Deserialize<'de> for EquivocationDetection
impl<'de> Deserialize<'de> for EquivocationDetection
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EquivocationDetection, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EquivocationDetection, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EquivocationDetection
Source§impl PartialEq for EquivocationDetection
impl PartialEq for EquivocationDetection
Source§fn eq(&self, other: &EquivocationDetection) -> bool
fn eq(&self, other: &EquivocationDetection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EquivocationDetection
impl Serialize for EquivocationDetection
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EquivocationDetection
Auto Trait Implementations§
impl Freeze for EquivocationDetection
impl RefUnwindSafe for EquivocationDetection
impl Send for EquivocationDetection
impl Sync for EquivocationDetection
impl Unpin for EquivocationDetection
impl UnsafeUnpin for EquivocationDetection
impl UnwindSafe for EquivocationDetection
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.