pub struct FinalizeBlock {
pub txs: Vec<Bytes>,
pub decided_last_commit: CommitInfo,
pub misbehavior: Vec<Misbehavior>,
pub hash: Hash,
pub height: Height,
pub time: Time,
pub next_validators_hash: Hash,
pub proposer_address: Id,
}
Expand description
Fields§
§txs: Vec<Bytes>
List of transactions committed as part of the block.
decided_last_commit: CommitInfo
Information about the last commit, obtained from the block that was just decided.
This includes the round, the list of validators, and which validators signed the last block.
misbehavior: Vec<Misbehavior>
Evidence of validator misbehavior.
hash: Hash
Merkle root hash of the fields of the decided block.
height: Height
The height of the finalized block.
time: Time
Timestamp of the finalized block.
next_validators_hash: Hash
Merkle root of the next validator set.
proposer_address: Id
The address of the public key of the original proposer of the block.
Trait Implementations§
Source§impl Clone for FinalizeBlock
impl Clone for FinalizeBlock
Source§fn clone(&self) -> FinalizeBlock
fn clone(&self) -> FinalizeBlock
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 FinalizeBlock
impl Debug for FinalizeBlock
Source§impl From<FinalizeBlock> for RequestFinalizeBlock
impl From<FinalizeBlock> for RequestFinalizeBlock
Source§fn from(value: FinalizeBlock) -> Self
fn from(value: FinalizeBlock) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FinalizeBlock
impl PartialEq for FinalizeBlock
Source§impl Protobuf<RequestFinalizeBlock> for FinalizeBlock
impl Protobuf<RequestFinalizeBlock> for FinalizeBlock
§fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode into a buffer in Protobuf format. Read more
§fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode with a length-delimiter to a buffer in Protobuf format. Read more
§fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode an instance from a buffer. Read more
§fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode a length-delimited instance from
the buffer. Read more
§fn encoded_len(self) -> usize
fn encoded_len(self) -> usize
Returns the encoded length of the message without a length delimiter. Read more
§fn encode_vec(self) -> Vec<u8> ⓘ
fn encode_vec(self) -> Vec<u8> ⓘ
Encodes into a Protobuf-encoded
Vec<u8>
.§fn decode_vec(v: &[u8]) -> Result<Self, Error>
fn decode_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance from a
Vec<u8>
(or equivalent).§fn encode_length_delimited_vec(self) -> Vec<u8> ⓘ
fn encode_length_delimited_vec(self) -> Vec<u8> ⓘ
Encode with a length-delimiter to a
Vec<u8>
Protobuf-encoded message.§fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance with a
length-delimiter from a
Vec<u8>
or equivalent.Source§impl TryFrom<RequestFinalizeBlock> for FinalizeBlock
impl TryFrom<RequestFinalizeBlock> for FinalizeBlock
impl Eq for FinalizeBlock
impl StructuralPartialEq for FinalizeBlock
Auto Trait Implementations§
impl Freeze for FinalizeBlock
impl RefUnwindSafe for FinalizeBlock
impl Send for FinalizeBlock
impl Sync for FinalizeBlock
impl Unpin for FinalizeBlock
impl UnwindSafe for FinalizeBlock
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