pub struct ProcessProposal {
pub txs: Vec<Bytes>,
pub proposed_last_commit: Option<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>
txs is an array of transactions that will be included in a block, sent to the app for possible modifications.
proposed_last_commit: Option<CommitInfo>
§misbehavior: Vec<Misbehavior>
§hash: Hash
§height: Height
§time: Time
§next_validators_hash: Hash
§proposer_address: Id
address of the public key of the validator proposing the block.
Trait Implementations§
Source§impl Clone for ProcessProposal
impl Clone for ProcessProposal
Source§fn clone(&self) -> ProcessProposal
fn clone(&self) -> ProcessProposal
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 ProcessProposal
impl Debug for ProcessProposal
Source§impl From<ProcessProposal> for RequestProcessProposal
impl From<ProcessProposal> for RequestProcessProposal
Source§fn from(value: ProcessProposal) -> Self
fn from(value: ProcessProposal) -> Self
Converts to this type from the input type.
Source§impl From<ProcessProposal> for RequestProcessProposal
impl From<ProcessProposal> for RequestProcessProposal
Source§fn from(value: ProcessProposal) -> Self
fn from(value: ProcessProposal) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProcessProposal
impl PartialEq for ProcessProposal
Source§impl Protobuf<RequestProcessProposal> for ProcessProposal
impl Protobuf<RequestProcessProposal> for ProcessProposal
§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 Protobuf<RequestProcessProposal> for ProcessProposal
impl Protobuf<RequestProcessProposal> for ProcessProposal
§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<RequestProcessProposal> for ProcessProposal
impl TryFrom<RequestProcessProposal> for ProcessProposal
Source§impl TryFrom<RequestProcessProposal> for ProcessProposal
impl TryFrom<RequestProcessProposal> for ProcessProposal
impl Eq for ProcessProposal
impl StructuralPartialEq for ProcessProposal
Auto Trait Implementations§
impl Freeze for ProcessProposal
impl RefUnwindSafe for ProcessProposal
impl Send for ProcessProposal
impl Sync for ProcessProposal
impl Unpin for ProcessProposal
impl UnwindSafe for ProcessProposal
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