[][src]Struct eosio_client_api::api_types::TransactionIn

pub struct TransactionIn {
    pub expiration: DateTime<Utc>,
    pub ref_block_num: u16,
    pub ref_block_prefix: u32,
    pub max_net_usage_words: u32,
    pub max_cpu_usage_ms: u8,
    pub delay_sec: u32,
    pub context_free_actions: Vec<String>,
    pub actions: Vec<ActionIn>,
    pub transaction_extensions: Vec<String>,
}

Fields

expiration: DateTime<Utc>ref_block_num: u16ref_block_prefix: u32max_net_usage_words: u32max_cpu_usage_ms: u8delay_sec: u32context_free_actions: Vec<String>actions: Vec<ActionIn>transaction_extensions: Vec<String>

Implementations

impl TransactionIn[src]

pub fn dummy() -> TransactionIn[src]

pub fn simple(
    actions: Vec<ActionIn>,
    ref_block_id: &str,
    expiration: DateTime<Utc>
) -> Result<TransactionIn>
[src]

pub fn hex_to_u64(hex: &str) -> u64[src]

pub fn block_to_hash(ref_block_id: &str) -> Result<Vec<u64>>[src]

Trait Implementations

impl Debug for TransactionIn[src]

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

impl Serialize for TransactionIn[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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, 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>,