[][src]Struct web3::types::SignedTransaction

pub struct SignedTransaction {
    pub message_hash: H256,
    pub v: u64,
    pub r: H256,
    pub s: H256,
    pub raw_transaction: Bytes,
    pub transaction_hash: H256,
}

Data for offline signed transaction

Fields

message_hash: H256

The given message hash

v: u64

V value with chain replay protection.

r: H256

R value.

s: H256

S value.

raw_transaction: Bytes

The raw signed transaction ready to be sent with send_raw_transaction

transaction_hash: H256

The transaction hash for the RLP encoded transaction.

Trait Implementations

impl Clone for SignedTransaction[src]

impl Debug for SignedTransaction[src]

impl<'a> From<&'a SignedTransaction> for Recovery[src]

impl PartialEq<SignedTransaction> for SignedTransaction[src]

impl StructuralPartialEq for SignedTransaction[src]

Auto Trait Implementations

impl RefUnwindSafe for SignedTransaction

impl Send for SignedTransaction

impl Sync for SignedTransaction

impl Unpin for SignedTransaction

impl UnwindSafe for SignedTransaction

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,