pub enum LedgerInfoWithSignatures {
V0(LedgerInfoWithV0),
}
Expand description
Wrapper around LedgerInfoWithScheme to support future upgrades, this is the data being persisted.
Variants§
Implementations§
source§impl LedgerInfoWithSignatures
impl LedgerInfoWithSignatures
pub fn new( ledger_info: LedgerInfo, signatures: BTreeMap<AccountAddress, Ed25519Signature> ) -> Self
pub fn genesis( genesis_state_root_hash: HashValue, validator_set: ValidatorSet ) -> Self
Methods from Deref<Target = LedgerInfoWithV0>§
pub fn ledger_info(&self) -> &LedgerInfo
pub fn commit_info(&self) -> &BlockInfo
pub fn add_signature( &mut self, validator: AccountAddress, signature: Ed25519Signature )
pub fn remove_signature(&mut self, validator: AccountAddress)
pub fn signatures(&self) -> &BTreeMap<AccountAddress, Ed25519Signature>
pub fn verify_signatures( &self, validator: &ValidatorVerifier ) -> Result<(), VerifyError>
pub fn check_voting_power( &self, validator: &ValidatorVerifier ) -> Result<(), VerifyError>
Trait Implementations§
source§impl Arbitrary for LedgerInfoWithSignatures
impl Arbitrary for LedgerInfoWithSignatures
§type Parameters = SizeRange
type Parameters = SizeRange
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.source§fn arbitrary_with(num_validators_range: Self::Parameters) -> Self::Strategy
fn arbitrary_with(num_validators_range: Self::Parameters) -> Self::Strategy
§type Strategy = BoxedStrategy<LedgerInfoWithSignatures>
type Strategy = BoxedStrategy<LedgerInfoWithSignatures>
The type of
Strategy
used to generate values of type Self
.source§impl Clone for LedgerInfoWithSignatures
impl Clone for LedgerInfoWithSignatures
source§fn clone(&self) -> LedgerInfoWithSignatures
fn clone(&self) -> LedgerInfoWithSignatures
Returns a copy 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 Debug for LedgerInfoWithSignatures
impl Debug for LedgerInfoWithSignatures
source§impl Deref for LedgerInfoWithSignatures
impl Deref for LedgerInfoWithSignatures
§type Target = LedgerInfoWithV0
type Target = LedgerInfoWithV0
The resulting type after dereferencing.
source§fn deref(&self) -> &LedgerInfoWithV0
fn deref(&self) -> &LedgerInfoWithV0
Dereferences the value.
source§impl DerefMut for LedgerInfoWithSignatures
impl DerefMut for LedgerInfoWithSignatures
source§fn deref_mut(&mut self) -> &mut LedgerInfoWithV0
fn deref_mut(&mut self) -> &mut LedgerInfoWithV0
Mutably dereferences the value.
source§impl<'de> Deserialize<'de> for LedgerInfoWithSignatures
impl<'de> Deserialize<'de> for LedgerInfoWithSignatures
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 Display for LedgerInfoWithSignatures
impl Display for LedgerInfoWithSignatures
source§impl PartialEq<LedgerInfoWithSignatures> for LedgerInfoWithSignatures
impl PartialEq<LedgerInfoWithSignatures> for LedgerInfoWithSignatures
source§fn eq(&self, other: &LedgerInfoWithSignatures) -> bool
fn eq(&self, other: &LedgerInfoWithSignatures) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LedgerInfoWithSignatures
impl Serialize for LedgerInfoWithSignatures
impl Eq for LedgerInfoWithSignatures
impl StructuralEq for LedgerInfoWithSignatures
impl StructuralPartialEq for LedgerInfoWithSignatures
Auto Trait Implementations§
impl RefUnwindSafe for LedgerInfoWithSignatures
impl Send for LedgerInfoWithSignatures
impl Sync for LedgerInfoWithSignatures
impl Unpin for LedgerInfoWithSignatures
impl UnwindSafe for LedgerInfoWithSignatures
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
source§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.