Struct silk::transaction::Transaction [] [src]

pub struct Transaction<T> {
    pub from: PublicKey,
    pub to: PublicKey,
    pub if_all: Vec<Condition>,
    pub unless_any: Vec<Condition>,
    pub asset: T,
    pub last_id: Hash,
    pub sig: Signature,
}

Fields

Methods

impl<T: Serialize> Transaction<T>
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<T: Debug> Debug for Transaction<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Transaction<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T: Eq> Eq for Transaction<T>
[src]

impl<T: Clone> Clone for Transaction<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for Transaction<T> where
    T: Send

impl<T> Sync for Transaction<T> where
    T: Sync