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: VOTEABLEThe 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::ViewWhich 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
Create 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) -> Result<()>
pub async fn is_relevant(&self, view_number: TYPES::View) -> 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: &EpochMembership<TYPES>,
epoch: Option<TYPES::Epoch>,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
pub async fn validate<V: Versions>( upgrade_certificate: &Option<Self>, membership: &EpochMembership<TYPES>, epoch: Option<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_tc2(self) -> TimeoutCertificate2<TYPES>
pub fn to_tc2(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_tc(self) -> TimeoutCertificate<TYPES>
pub fn to_tc(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§async fn stake_table_entry(
membership: &EpochMembership<TYPES>,
pub_key: &TYPES::SignatureKey,
) -> Option<PeerConfig<TYPES>>
async fn stake_table_entry( membership: &EpochMembership<TYPES>, pub_key: &TYPES::SignatureKey, ) -> Option<PeerConfig<TYPES>>
Proxy’s to Membership.stake
Source§async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
Proxy’s to Membership.da_stake_table
Source§async fn total_nodes(membership: &EpochMembership<TYPES>) -> usize
async fn total_nodes(membership: &EpochMembership<TYPES>) -> 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: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry],
threshold: U256,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
async fn is_valid_cert<V: Versions>( &self, stake_table: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry], threshold: U256, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<()>
Source§async fn threshold(membership: &EpochMembership<TYPES>) -> U256
async fn threshold(membership: &EpochMembership<TYPES>) -> U256
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§async fn stake_table_entry(
membership: &EpochMembership<TYPES>,
pub_key: &TYPES::SignatureKey,
) -> Option<PeerConfig<TYPES>>
async fn stake_table_entry( membership: &EpochMembership<TYPES>, pub_key: &TYPES::SignatureKey, ) -> Option<PeerConfig<TYPES>>
Proxy’s to Membership.stake
Source§async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
Proxy’s to Membership.da_stake_table
Source§async fn total_nodes(membership: &EpochMembership<TYPES>) -> usize
async fn total_nodes(membership: &EpochMembership<TYPES>) -> 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: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry],
threshold: U256,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
async fn is_valid_cert<V: Versions>( &self, stake_table: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry], threshold: U256, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<()>
Source§async fn threshold(membership: &EpochMembership<TYPES>) -> U256
async fn threshold(membership: &EpochMembership<TYPES>) -> U256
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§async fn total_nodes(membership: &EpochMembership<TYPES>) -> usize
async fn total_nodes(membership: &EpochMembership<TYPES>) -> 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: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry],
threshold: U256,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
async fn is_valid_cert<V: Versions>( &self, stake_table: &[<TYPES::SignatureKey as SignatureKey>::StakeTableEntry], threshold: U256, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<()>
Source§async fn threshold(membership: &EpochMembership<TYPES>) -> U256
async fn threshold(membership: &EpochMembership<TYPES>) -> U256
Source§async fn stake_table_entry(
membership: &EpochMembership<TYPES>,
pub_key: &TYPES::SignatureKey,
) -> Option<PeerConfig<TYPES>>
async fn stake_table_entry( membership: &EpochMembership<TYPES>, pub_key: &TYPES::SignatureKey, ) -> Option<PeerConfig<TYPES>>
StakeTableEntry from Membership implementation.Source§async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
async fn stake_table(membership: &EpochMembership<TYPES>) -> HSStakeTable<TYPES>
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> + HasEpoch<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasEpoch<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + HasEpoch<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasEpoch<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
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,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync 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
key and return true if they are equal.§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<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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§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.§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.