[][src]Struct exonum::messages::PrevotesRequest

pub struct PrevotesRequest { /* fields omitted */ }

Request for pre-votes.

Validation

The message is ignored if its height is not equal to the node's height.

Processing

The requested pre-votes are sent to the recipient.

Generation

This message can be sent during Prevote and Precommit handling.

Methods

impl PrevotesRequest
[src]

pub fn new(
    from: &PublicKey,
    to: &PublicKey,
    height: Height,
    round: Round,
    propose_hash: &Hash,
    validators: BitVec,
    secret_key: &SecretKey
) -> PrevotesRequest
[src]

Creates message and signs it.

pub fn new_with_signature(
    from: &PublicKey,
    to: &PublicKey,
    height: Height,
    round: Round,
    propose_hash: &Hash,
    validators: BitVec,
    signature: &Signature
) -> PrevotesRequest
[src]

Creates message and appends existing signature.

pub fn to_hex(&self) -> String
[src]

Returns the hex representation of the binary data. Lower case letters are used (e.g. f9b4ca).

pub fn from(&self) -> &PublicKey
[src]

The sender's public key.

pub fn to(&self) -> &PublicKey
[src]

Public key of the recipient.

pub fn height(&self) -> Height
[src]

The height to which the message is related.

pub fn round(&self) -> Round
[src]

The round to which the message is related.

pub fn propose_hash(&self) -> &Hash
[src]

Hash of the Propose.

pub fn validators(&self) -> BitVec
[src]

The list of validators that send pre-votes.

Trait Implementations

impl ExonumJson for PrevotesRequest
[src]

impl ExonumJsonDeserialize for PrevotesRequest
[src]

impl<'a> SegmentField<'a> for PrevotesRequest
[src]

impl ServiceMessage for PrevotesRequest
[src]

impl Message for PrevotesRequest
[src]

fn verify_signature(&self, pub_key: &PublicKey) -> bool
[src]

Verifies the message using given public key.

impl StorageValue for PrevotesRequest
[src]

impl PartialEq<PrevotesRequest> for PrevotesRequest
[src]

impl AsRef<RawMessage> for PrevotesRequest
[src]

impl Clone for PrevotesRequest
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PrevotesRequest
[src]

impl<'de> Deserialize<'de> for PrevotesRequest
[src]

impl Serialize for PrevotesRequest
[src]

impl FromHex for PrevotesRequest
[src]

type Error = Error

Auto Trait Implementations

Blanket Implementations

impl<T> CryptoHash for T where
    T: Message
[src]

impl<T> SerializeContent for T where
    T: Serialize
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Erased for T

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self