[][src]Struct exonum::messages::TransactionsResponse

pub struct TransactionsResponse { /* fields omitted */ }

Information about the transactions.

Validation

The message is ignored if * its to field corresponds to a different node * the transactions field cannot be parsed or verified

Processing

Returns information about the transactions requested by the hash.

Generation

The message is sent as response to TransactionsRequest.

Methods

impl TransactionsResponse
[src]

pub fn new(
    from: &PublicKey,
    to: &PublicKey,
    transactions: Vec<RawMessage>,
    secret_key: &SecretKey
) -> TransactionsResponse
[src]

Creates message and signs it.

pub fn new_with_signature(
    from: &PublicKey,
    to: &PublicKey,
    transactions: Vec<RawMessage>,
    signature: &Signature
) -> TransactionsResponse
[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 transactions(&self) -> Vec<RawMessage>
[src]

List of the transactions.

Trait Implementations

impl ExonumJson for TransactionsResponse
[src]

impl ExonumJsonDeserialize for TransactionsResponse
[src]

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

impl ServiceMessage for TransactionsResponse
[src]

impl Message for TransactionsResponse
[src]

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

Verifies the message using given public key.

impl StorageValue for TransactionsResponse
[src]

impl PartialEq<TransactionsResponse> for TransactionsResponse
[src]

impl AsRef<RawMessage> for TransactionsResponse
[src]

impl Clone for TransactionsResponse
[src]

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

Performs copy-assignment from source. Read more

impl Debug for TransactionsResponse
[src]

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

impl Serialize for TransactionsResponse
[src]

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