[][src]Struct eosio_core::Action

pub struct Action<Data> {
    pub account: AccountName,
    pub name: ActionName,
    pub authorization: Vec<Authorization>,
    pub data: Data,
}

TODO docs

Fields

account: AccountName

TODO docs

name: ActionName

TODO docs

authorization: Vec<Authorization>

TODO docs

data: Data

TODO docs

Trait Implementations

impl<Data: Clone> Clone for Action<Data>[src]

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

Performs copy-assignment from source. Read more

impl<Data: Debug> Debug for Action<Data>[src]

impl<Data> Write for Action<Data> where
    Data: Write + NumBytes
[src]

impl<Data> NumBytes for Action<Data> where
    Data: NumBytes
[src]

fn num_bytes(&self) -> usize[src]

TODO docs

impl<Data> Serialize for Action<Data> where
    Data: Serialize
[src]

impl<'de, Data> Deserialize<'de> for Action<Data> where
    Data: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<Data> Send for Action<Data> where
    Data: Send

impl<Data> Sync for Action<Data> where
    Data: Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]