pub struct SimpleCertificate<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> {
pub data: VOTEABLE,
vote_commitment: Commitment<VOTEABLE>,
pub view_number: TYPES::View,
pub signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>,
pub _pd: PhantomData<(TYPES, THRESHOLD)>,
}
Expand description
A certificate which can be created by aggregating many simple votes on the commitment.
Fields§
§data: VOTEABLE
The data this certificate is for. I.e the thing that was voted on to create this Certificate
vote_commitment: Commitment<VOTEABLE>
commitment of all the votes this cert should be signed over
view_number: TYPES::View
Which view this QC relates to
signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>
assembled signature for certificate aggregation
_pd: PhantomData<(TYPES, THRESHOLD)>
phantom data for THRESHOLD
and TYPES
Implementations§
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData<TYPES>, SuccessThreshold>
sourcepub async fn genesis<V: Versions>(
validated_state: &TYPES::ValidatedState,
instance_state: &TYPES::InstanceState,
) -> Self
pub async fn genesis<V: Versions>( validated_state: &TYPES::ValidatedState, instance_state: &TYPES::InstanceState, ) -> Self
Creat the Genesis certificate
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData2<TYPES>, SuccessThreshold>
sourcepub async fn genesis<V: Versions>(
validated_state: &TYPES::ValidatedState,
instance_state: &TYPES::InstanceState,
) -> Self
pub async fn genesis<V: Versions>( validated_state: &TYPES::ValidatedState, instance_state: &TYPES::InstanceState, ) -> Self
Creat the Genesis certificate
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
sourcepub fn new(
data: VOTEABLE,
vote_commitment: Commitment<VOTEABLE>,
view_number: TYPES::View,
signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>,
pd: PhantomData<(TYPES, THRESHOLD)>,
) -> Self
pub fn new( data: VOTEABLE, vote_commitment: Commitment<VOTEABLE>, view_number: TYPES::View, signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>, pd: PhantomData<(TYPES, THRESHOLD)>, ) -> Self
Creates a new instance of SimpleCertificate
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, UpgradeProposalData<TYPES>, UpgradeThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, UpgradeProposalData<TYPES>, UpgradeThreshold>
sourcepub async fn is_relevant(
&self,
view_number: TYPES::View,
decided_upgrade_certificate: Arc<RwLock<Option<Self>>>,
) -> Result<()>
pub async fn is_relevant( &self, view_number: TYPES::View, decided_upgrade_certificate: Arc<RwLock<Option<Self>>>, ) -> Result<()>
Determines whether or not a certificate is relevant (i.e. we still have time to reach a decide)
§Errors
Returns an error when the certificate is no longer relevant
sourcepub async fn validate<V: Versions>(
upgrade_certificate: &Option<Self>,
membership: &RwLock<TYPES::Membership>,
epoch: TYPES::Epoch,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
pub async fn validate<V: Versions>( upgrade_certificate: &Option<Self>, membership: &RwLock<TYPES::Membership>, epoch: TYPES::Epoch, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<()>
sourcepub fn upgrading_in(&self, view: TYPES::View) -> bool
pub fn upgrading_in(&self, view: TYPES::View) -> bool
Given an upgrade certificate and a view, tests whether the view is in the period where we are upgrading, which requires that we propose with null blocks.
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData<TYPES>, SuccessThreshold>
sourcepub fn to_qc2(self) -> QuorumCertificate2<TYPES>
pub fn to_qc2(self) -> QuorumCertificate2<TYPES>
Convert a QuorumCertificate
into a QuorumCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, QuorumData2<TYPES>, SuccessThreshold>
sourcepub fn to_qc(self) -> QuorumCertificate<TYPES>
pub fn to_qc(self) -> QuorumCertificate<TYPES>
Convert a QuorumCertificate2
into a QuorumCertificate
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, DaData, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, DaData, SuccessThreshold>
sourcepub fn to_dac2(self) -> DaCertificate2<TYPES>
pub fn to_dac2(self) -> DaCertificate2<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, DaData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, DaData2<TYPES>, SuccessThreshold>
sourcepub fn to_dac(self) -> DaCertificate<TYPES>
pub fn to_dac(self) -> DaCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncPreCommitData<TYPES>, OneHonestThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncPreCommitData<TYPES>, OneHonestThreshold>
sourcepub fn to_vsc2(self) -> ViewSyncPreCommitCertificate2<TYPES>
pub fn to_vsc2(self) -> ViewSyncPreCommitCertificate2<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncPreCommitData2<TYPES>, OneHonestThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncPreCommitData2<TYPES>, OneHonestThreshold>
sourcepub fn to_vsc(self) -> ViewSyncPreCommitCertificate<TYPES>
pub fn to_vsc(self) -> ViewSyncPreCommitCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncCommitData<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncCommitData<TYPES>, SuccessThreshold>
sourcepub fn to_vsc2(self) -> ViewSyncCommitCertificate2<TYPES>
pub fn to_vsc2(self) -> ViewSyncCommitCertificate2<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncCommitData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncCommitData2<TYPES>, SuccessThreshold>
sourcepub fn to_vsc(self) -> ViewSyncCommitCertificate<TYPES>
pub fn to_vsc(self) -> ViewSyncCommitCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncFinalizeData<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncFinalizeData<TYPES>, SuccessThreshold>
sourcepub fn to_vsc2(self) -> ViewSyncFinalizeCertificate2<TYPES>
pub fn to_vsc2(self) -> ViewSyncFinalizeCertificate2<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncFinalizeData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, ViewSyncFinalizeData2<TYPES>, SuccessThreshold>
sourcepub fn to_vsc(self) -> ViewSyncFinalizeCertificate<TYPES>
pub fn to_vsc(self) -> ViewSyncFinalizeCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, TimeoutData<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, TimeoutData<TYPES>, SuccessThreshold>
sourcepub fn to_vsc2(self) -> TimeoutCertificate2<TYPES>
pub fn to_vsc2(self) -> TimeoutCertificate2<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType> SimpleCertificate<TYPES, TimeoutData2<TYPES>, SuccessThreshold>
impl<TYPES: NodeType> SimpleCertificate<TYPES, TimeoutData2<TYPES>, SuccessThreshold>
sourcepub fn to_vsc(self) -> TimeoutCertificate<TYPES>
pub fn to_vsc(self) -> TimeoutCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
Trait Implementations§
source§impl<TYPES: NodeType, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, DaData> for SimpleCertificate<TYPES, DaData, THRESHOLD>
impl<TYPES: NodeType, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, DaData> for SimpleCertificate<TYPES, DaData, THRESHOLD>
source§fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
pub_key: &TYPES::SignatureKey,
epoch: TYPES::Epoch,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, pub_key: &TYPES::SignatureKey, epoch: TYPES::Epoch, ) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Proxy’s to Membership.stake
source§fn stake_table<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Proxy’s to Membership.da_stake_table
source§fn total_nodes<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> usize
fn total_nodes<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> usize
Proxy’s to Membership.da_total_nodes
source§fn create_signed_certificate<V: Versions>(
vote_commitment: Commitment<VersionedVoteData<TYPES, DaData, V>>,
data: Self::Voteable,
sig: <TYPES::SignatureKey as SignatureKey>::QcType,
view: TYPES::View,
) -> Self
fn create_signed_certificate<V: Versions>( vote_commitment: Commitment<VersionedVoteData<TYPES, DaData, V>>, data: Self::Voteable, sig: <TYPES::SignatureKey as SignatureKey>::QcType, view: TYPES::View, ) -> Self
source§async fn is_valid_cert<V: Versions>(
&self,
stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>,
threshold: NonZeroU64,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> bool
async fn is_valid_cert<V: Versions>( &self, stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>, threshold: NonZeroU64, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> bool
source§fn threshold<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> u64
fn threshold<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> u64
source§async fn data_commitment<V: Versions>(
&self,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<Commitment<VersionedVoteData<TYPES, DaData, V>>>
async fn data_commitment<V: Versions>( &self, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<Commitment<VersionedVoteData<TYPES, DaData, V>>>
source§impl<TYPES: NodeType, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, DaData2<TYPES>> for SimpleCertificate<TYPES, DaData2<TYPES>, THRESHOLD>
impl<TYPES: NodeType, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, DaData2<TYPES>> for SimpleCertificate<TYPES, DaData2<TYPES>, THRESHOLD>
source§fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
pub_key: &TYPES::SignatureKey,
epoch: TYPES::Epoch,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, pub_key: &TYPES::SignatureKey, epoch: TYPES::Epoch, ) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Proxy’s to Membership.stake
source§fn stake_table<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Proxy’s to Membership.da_stake_table
source§fn total_nodes<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> usize
fn total_nodes<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> usize
Proxy’s to Membership.da_total_nodes
source§fn create_signed_certificate<V: Versions>(
vote_commitment: Commitment<VersionedVoteData<TYPES, DaData2<TYPES>, V>>,
data: Self::Voteable,
sig: <TYPES::SignatureKey as SignatureKey>::QcType,
view: TYPES::View,
) -> Self
fn create_signed_certificate<V: Versions>( vote_commitment: Commitment<VersionedVoteData<TYPES, DaData2<TYPES>, V>>, data: Self::Voteable, sig: <TYPES::SignatureKey as SignatureKey>::QcType, view: TYPES::View, ) -> Self
source§async fn is_valid_cert<V: Versions>(
&self,
stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>,
threshold: NonZeroU64,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> bool
async fn is_valid_cert<V: Versions>( &self, stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>, threshold: NonZeroU64, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> bool
source§fn threshold<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> u64
fn threshold<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> u64
source§async fn data_commitment<V: Versions>(
&self,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<Commitment<VersionedVoteData<TYPES, DaData2<TYPES>, V>>>
async fn data_commitment<V: Versions>( &self, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<Commitment<VersionedVoteData<TYPES, DaData2<TYPES>, V>>>
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static + QuorumMarker, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, VOTEABLE> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static + QuorumMarker, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, VOTEABLE> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn total_nodes<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> usize
fn total_nodes<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> usize
Proxy’s to Membership.total_nodes
source§fn create_signed_certificate<V: Versions>(
vote_commitment: Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>,
data: Self::Voteable,
sig: <TYPES::SignatureKey as SignatureKey>::QcType,
view: TYPES::View,
) -> Self
fn create_signed_certificate<V: Versions>( vote_commitment: Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>, data: Self::Voteable, sig: <TYPES::SignatureKey as SignatureKey>::QcType, view: TYPES::View, ) -> Self
source§async fn is_valid_cert<V: Versions>(
&self,
stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>,
threshold: NonZeroU64,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> bool
async fn is_valid_cert<V: Versions>( &self, stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>, threshold: NonZeroU64, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> bool
source§fn threshold<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> u64
fn threshold<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> u64
source§fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
pub_key: &TYPES::SignatureKey,
epoch: TYPES::Epoch,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, pub_key: &TYPES::SignatureKey, epoch: TYPES::Epoch, ) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
StakeTableEntry
from Membership implementation.source§fn stake_table<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: TYPES::Epoch,
) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: TYPES::Epoch, ) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
source§async fn data_commitment<V: Versions>(
&self,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>>
async fn data_commitment<V: Versions>( &self, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>>
source§impl<TYPES: Clone + NodeType, VOTEABLE: Clone + Voteable<TYPES>, THRESHOLD: Clone + Threshold<TYPES>> Clone for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Clone + NodeType, VOTEABLE: Clone + Voteable<TYPES>, THRESHOLD: Clone + Threshold<TYPES>> Clone for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn clone(&self) -> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
fn clone(&self) -> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + Committable, THRESHOLD: Threshold<TYPES>> Committable for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + Committable, THRESHOLD: Threshold<TYPES>> Committable for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<TYPES: Debug + NodeType, VOTEABLE: Debug + Voteable<TYPES>, THRESHOLD: Debug + Threshold<TYPES>> Debug for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Debug + NodeType, VOTEABLE: Debug + Voteable<TYPES>, THRESHOLD: Debug + Threshold<TYPES>> Debug for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<'de, TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Deserialize<'de> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<'de, TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Deserialize<'de> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
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>,
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasViewNumber<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasViewNumber<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn view_number(&self) -> TYPES::View
fn view_number(&self) -> TYPES::View
source§impl<TYPES: Hash + NodeType, VOTEABLE: Hash + Voteable<TYPES>, THRESHOLD: Hash + Threshold<TYPES>> Hash for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Hash + NodeType, VOTEABLE: Hash + Voteable<TYPES>, THRESHOLD: Hash + Threshold<TYPES>> Hash for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<TYPES: PartialEq + NodeType, VOTEABLE: PartialEq + Voteable<TYPES>, THRESHOLD: PartialEq + Threshold<TYPES>> PartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: PartialEq + NodeType, VOTEABLE: PartialEq + Voteable<TYPES>, THRESHOLD: PartialEq + Threshold<TYPES>> PartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn eq(&self, other: &SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>) -> bool
fn eq(&self, other: &SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>) -> bool
self
and other
values to be equal, and is used by ==
.source§impl<TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Serialize for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Serialize for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Eq + NodeType, VOTEABLE: Eq + Voteable<TYPES>, THRESHOLD: Eq + Threshold<TYPES>> Eq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> StructuralPartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
Auto Trait Implementations§
impl<TYPES, VOTEABLE, THRESHOLD> Freeze for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>where
VOTEABLE: Freeze,
<TYPES as NodeType>::View: Freeze,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType: Freeze,
impl<TYPES, VOTEABLE, THRESHOLD> RefUnwindSafe for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>where
VOTEABLE: RefUnwindSafe,
<TYPES as NodeType>::View: RefUnwindSafe,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType: RefUnwindSafe,
TYPES: RefUnwindSafe,
THRESHOLD: RefUnwindSafe,
impl<TYPES, VOTEABLE, THRESHOLD> Send for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES, VOTEABLE, THRESHOLD> Sync for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES, VOTEABLE, THRESHOLD> Unpin for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES, VOTEABLE, THRESHOLD> UnwindSafe for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>where
VOTEABLE: UnwindSafe,
<TYPES as NodeType>::View: UnwindSafe,
<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType: UnwindSafe,
TYPES: UnwindSafe,
THRESHOLD: UnwindSafe,
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.