[][src]Struct bytom_rust_sdk::transaction::AnnotatedOutput

pub struct AnnotatedOutput {
    pub output_type: String,
    pub id: String,
    pub transaction_id: String,
    pub position: u8,
    pub asset_id: String,
    pub asset_alias: String,
    pub asset_definition: String,
    pub amount: u64,
    pub account_id: String,
    pub account_alias: String,
    pub control_program: String,
    pub address: String,
}

Fields

output_type: Stringid: Stringtransaction_id: Stringposition: u8asset_id: Stringasset_alias: Stringasset_definition: Stringamount: u64account_id: Stringaccount_alias: Stringcontrol_program: Stringaddress: String

Trait Implementations

impl Clone for AnnotatedOutput[src]

impl Debug for AnnotatedOutput[src]

impl Default for AnnotatedOutput[src]

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

impl Serialize for AnnotatedOutput[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: Deserialize<'de>, 
[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.