Struct tendermint_machine::ext::Commit
source · pub struct Commit<S: SignatureScheme> {
pub end_time: u64,
pub validators: Vec<S::ValidatorId>,
pub signature: S::AggregateSignature,
}Expand description
A commit for a specific block. The list of validators have weight exceeding the threshold for a valid commit.
Fields
end_time: u64End time of the round, used as the start time of next round.
validators: Vec<S::ValidatorId>Validators participating in the signature.
signature: S::AggregateSignatureAggregate signature.
Trait Implementations
sourceimpl<S: Clone + SignatureScheme> Clone for Commit<S>where
S::ValidatorId: Clone,
S::AggregateSignature: Clone,
impl<S: Clone + SignatureScheme> Clone for Commit<S>where
S::ValidatorId: Clone,
S::AggregateSignature: Clone,
sourceimpl<S: Debug + SignatureScheme> Debug for Commit<S>where
S::ValidatorId: Debug,
S::AggregateSignature: Debug,
impl<S: Debug + SignatureScheme> Debug for Commit<S>where
S::ValidatorId: Debug,
S::AggregateSignature: Debug,
sourceimpl<S: SignatureScheme> Decode for Commit<S>where
Vec<S::ValidatorId>: Decode,
Vec<S::ValidatorId>: Decode,
S::AggregateSignature: Decode,
S::AggregateSignature: Decode,
impl<S: SignatureScheme> Decode for Commit<S>where
Vec<S::ValidatorId>: Decode,
Vec<S::ValidatorId>: Decode,
S::AggregateSignature: Decode,
S::AggregateSignature: Decode,
sourcefn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
Attempt to deserialise the value from input.
sourcefn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
Attempt to skip the encoded value from input. Read more
sourcefn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
sourceimpl<S: SignatureScheme> Encode for Commit<S>where
Vec<S::ValidatorId>: Encode,
Vec<S::ValidatorId>: Encode,
S::AggregateSignature: Encode,
S::AggregateSignature: Encode,
impl<S: SignatureScheme> Encode for Commit<S>where
Vec<S::ValidatorId>: Encode,
Vec<S::ValidatorId>: Encode,
S::AggregateSignature: Encode,
S::AggregateSignature: Encode,
sourcefn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
Convert self to a slice and append it to the destination.
sourcefn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
sourcefn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
sourcefn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
sourceimpl<S: PartialEq + SignatureScheme> PartialEq<Commit<S>> for Commit<S>where
S::ValidatorId: PartialEq,
S::AggregateSignature: PartialEq,
impl<S: PartialEq + SignatureScheme> PartialEq<Commit<S>> for Commit<S>where
S::ValidatorId: PartialEq,
S::AggregateSignature: PartialEq,
impl<S: SignatureScheme> EncodeLike<Commit<S>> for Commit<S>where
Vec<S::ValidatorId>: Encode,
Vec<S::ValidatorId>: Encode,
S::AggregateSignature: Encode,
S::AggregateSignature: Encode,
impl<S: SignatureScheme> StructuralPartialEq for Commit<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for Commit<S>where
<S as SignatureScheme>::AggregateSignature: RefUnwindSafe,
<S as SignatureScheme>::ValidatorId: RefUnwindSafe,
impl<S> Send for Commit<S>
impl<S> Sync for Commit<S>
impl<S> Unpin for Commit<S>where
<S as SignatureScheme>::AggregateSignature: Unpin,
<S as SignatureScheme>::ValidatorId: Unpin,
impl<S> UnwindSafe for Commit<S>where
<S as SignatureScheme>::AggregateSignature: UnwindSafe,
<S as SignatureScheme>::ValidatorId: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more