pub struct HonestyCeiling {
pub distinct_operators: usize,
pub distinct_organizations: usize,
pub distinct_jurisdictions: usize,
pub distinct_infra_zones: usize,
pub policy_met: bool,
pub equivocation: EquivocationDetection,
pub shortfalls: Vec<String>,
pub label: String,
}Expand description
The honest current truth about a witness set, rendered identically by every
surface — CLI witness status, verify output, and the cross-repo badge (via
the serialized form). Computing it in ONE place means no surface can forget
the ceiling or re-derive met/failing differently.
Fields§
§distinct_operators: usizeDistinct operators (after Sybil collapse).
distinct_organizations: usizeDistinct organizations.
distinct_jurisdictions: usizeDistinct jurisdictions.
distinct_infra_zones: usizeDistinct infrastructure zones.
policy_met: boolWhether the diversity policy is met.
equivocation: EquivocationDetectionWhether equivocation detection is sampled or non-repudiable.
shortfalls: Vec<String>Why the policy is unmet (empty iff policy_met).
label: StringOne-line human-readable ceiling label — the canonical honest summary.
Trait Implementations§
Source§impl Clone for HonestyCeiling
impl Clone for HonestyCeiling
Source§fn clone(&self) -> HonestyCeiling
fn clone(&self) -> HonestyCeiling
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 HonestyCeiling
impl Debug for HonestyCeiling
Source§impl<'de> Deserialize<'de> for HonestyCeiling
impl<'de> Deserialize<'de> for HonestyCeiling
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<HonestyCeiling, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<HonestyCeiling, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HonestyCeiling
Source§impl PartialEq for HonestyCeiling
impl PartialEq for HonestyCeiling
Source§fn eq(&self, other: &HonestyCeiling) -> bool
fn eq(&self, other: &HonestyCeiling) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HonestyCeiling
impl Serialize for HonestyCeiling
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 HonestyCeiling
Auto Trait Implementations§
impl Freeze for HonestyCeiling
impl RefUnwindSafe for HonestyCeiling
impl Send for HonestyCeiling
impl Sync for HonestyCeiling
impl Unpin for HonestyCeiling
impl UnsafeUnpin for HonestyCeiling
impl UnwindSafe for HonestyCeiling
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.