pub struct CheckpointTransparencySummary {
pub publications: Vec<CheckpointPublication>,
pub witnesses: Vec<CheckpointWitness>,
pub consistency_proofs: Vec<CheckpointConsistencyProof>,
pub equivocations: Vec<CheckpointEquivocation>,
}Expand description
Derived transparency records for a set of checkpoints.
Fields§
§publications: Vec<CheckpointPublication>Publication records for each checkpoint.
witnesses: Vec<CheckpointWitness>Witness records derived from predecessor-digest links.
consistency_proofs: Vec<CheckpointConsistencyProof>Prefix-growth proofs derived from contiguous checkpoint extensions.
equivocations: Vec<CheckpointEquivocation>Conflict records derived from contradictory checkpoints.
Trait Implementations§
Source§impl Clone for CheckpointTransparencySummary
impl Clone for CheckpointTransparencySummary
Source§fn clone(&self) -> CheckpointTransparencySummary
fn clone(&self) -> CheckpointTransparencySummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CheckpointTransparencySummary
impl Default for CheckpointTransparencySummary
Source§fn default() -> CheckpointTransparencySummary
fn default() -> CheckpointTransparencySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointTransparencySummary
impl<'de> Deserialize<'de> for CheckpointTransparencySummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CheckpointTransparencySummary
impl PartialEq for CheckpointTransparencySummary
Source§fn eq(&self, other: &CheckpointTransparencySummary) -> bool
fn eq(&self, other: &CheckpointTransparencySummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CheckpointTransparencySummary
impl StructuralPartialEq for CheckpointTransparencySummary
Auto Trait Implementations§
impl Freeze for CheckpointTransparencySummary
impl RefUnwindSafe for CheckpointTransparencySummary
impl Send for CheckpointTransparencySummary
impl Sync for CheckpointTransparencySummary
impl Unpin for CheckpointTransparencySummary
impl UnsafeUnpin for CheckpointTransparencySummary
impl UnwindSafe for CheckpointTransparencySummary
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.