Struct ethereum::TransactionMessage[][src]

pub struct TransactionMessage {
    pub nonce: U256,
    pub gas_price: U256,
    pub gas_limit: U256,
    pub action: TransactionAction,
    pub value: U256,
    pub input: Vec<u8>,
    pub chain_id: Option<u64>,
}

Fields

nonce: U256gas_price: U256gas_limit: U256action: TransactionActionvalue: U256input: Vec<u8>chain_id: Option<u64>

Implementations

impl TransactionMessage[src]

pub fn hash(&self) -> H256[src]

Trait Implementations

impl Clone for TransactionMessage[src]

impl Debug for TransactionMessage[src]

impl Encodable for TransactionMessage[src]

impl Eq for TransactionMessage[src]

impl From<Transaction> for TransactionMessage[src]

impl PartialEq<TransactionMessage> for TransactionMessage[src]

impl StructuralEq for TransactionMessage[src]

impl StructuralPartialEq for TransactionMessage[src]

Auto Trait Implementations

impl RefUnwindSafe for TransactionMessage

impl Send for TransactionMessage

impl Sync for TransactionMessage

impl Unpin for TransactionMessage

impl UnwindSafe for TransactionMessage

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

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

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>, 
[src]