pub struct ChainOutcome {
pub head_key_version: u32,
pub head_pubkey: String,
pub length: usize,
}Expand description
Outcome of a successful chain verification.
Fields§
§head_key_version: u32Highest key_version observed.
head_pubkey: StringPubkey at head_key_version.
length: usizeTotal entries (including bootstrap).
Trait Implementations§
Source§impl Clone for ChainOutcome
impl Clone for ChainOutcome
Source§fn clone(&self) -> ChainOutcome
fn clone(&self) -> ChainOutcome
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 ChainOutcome
impl Debug for ChainOutcome
Source§impl PartialEq for ChainOutcome
impl PartialEq for ChainOutcome
Source§fn eq(&self, other: &ChainOutcome) -> bool
fn eq(&self, other: &ChainOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ChainOutcome
impl StructuralPartialEq for ChainOutcome
Auto Trait Implementations§
impl Freeze for ChainOutcome
impl RefUnwindSafe for ChainOutcome
impl Send for ChainOutcome
impl Sync for ChainOutcome
impl Unpin for ChainOutcome
impl UnsafeUnpin for ChainOutcome
impl UnwindSafe for ChainOutcome
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.