[][src]Struct exonum::messages::TransactionsRequest

pub struct TransactionsRequest { /* fields omitted */ }

Request for transactions by hash.

Processing

Requested transactions are sent to the recipient.

Generation

This message can be sent during Propose, Prevote and Precommit handling.

Methods

impl TransactionsRequest
[src]

pub fn new(
    from: &PublicKey,
    to: &PublicKey,
    txs: &[Hash],
    secret_key: &SecretKey
) -> TransactionsRequest
[src]

Creates message and signs it.

pub fn new_with_signature(
    from: &PublicKey,
    to: &PublicKey,
    txs: &[Hash],
    signature: &Signature
) -> TransactionsRequest
[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 txs(&self) -> &[Hash]
[src]

The list of the transaction hashes.

Trait Implementations

impl ExonumJson for TransactionsRequest
[src]

impl ExonumJsonDeserialize for TransactionsRequest
[src]

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

impl ServiceMessage for TransactionsRequest
[src]

impl Message for TransactionsRequest
[src]

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

Verifies the message using given public key.

impl StorageValue for TransactionsRequest
[src]

impl PartialEq<TransactionsRequest> for TransactionsRequest
[src]

impl AsRef<RawMessage> for TransactionsRequest
[src]

impl Clone for TransactionsRequest
[src]

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

Performs copy-assignment from source. Read more

impl Debug for TransactionsRequest
[src]

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

impl Serialize for TransactionsRequest
[src]

impl FromHex for TransactionsRequest
[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