[][src]Struct eosio::TransactionHeader

pub struct TransactionHeader {
    pub expiration: TimePointSec,
    pub ref_block_num: u16,
    pub ref_block_prefix: u32,
    pub max_net_usage_words: UnsignedInt,
    pub max_cpu_usage_ms: u8,
    pub delay_sec: UnsignedInt,
}

TODO docs

Fields

expiration: TimePointSec

TODO docs

ref_block_num: u16

TODO docs

ref_block_prefix: u32

TODO docs

max_net_usage_words: UnsignedInt

number of 8 byte words this transaction can serialize into after compressions

max_cpu_usage_ms: u8

number of CPU usage units to bill transaction for

delay_sec: UnsignedInt

number of seconds to delay transaction, default: 0

Trait Implementations

impl Clone for TransactionHeader[src]

impl Debug for TransactionHeader[src]

impl Default for TransactionHeader[src]

impl Eq for TransactionHeader[src]

impl Hash for TransactionHeader[src]

impl NumBytes for TransactionHeader[src]

impl Ord for TransactionHeader[src]

impl PartialEq<TransactionHeader> for TransactionHeader[src]

impl PartialOrd<TransactionHeader> for TransactionHeader[src]

impl Read for TransactionHeader[src]

impl StructuralEq for TransactionHeader[src]

impl StructuralPartialEq for TransactionHeader[src]

impl Write for TransactionHeader[src]

Auto Trait Implementations

impl Send for TransactionHeader

impl Sync for TransactionHeader

impl Unpin for TransactionHeader

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> 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.