[][src]Struct golem_rpc_api::pay::WalletOperation

pub struct WalletOperation {
    pub task_payment: Option<TaskPayment>,
    pub transaction_hash: Option<String>,
    pub direction: WalletOperationDirection,
    pub operation_type: WalletOperationType,
    pub status: WalletOperationStatus,
    pub sender_address: String,
    pub recipient_address: String,
    pub amount: BigDecimal,
    pub currency: WalletOperationCurrency,
    pub gas_cost: Option<BigDecimal>,
    pub created: DateTime<Utc>,
    pub modified: DateTime<Utc>,
}

Fields

task_payment: Option<TaskPayment>transaction_hash: Option<String>direction: WalletOperationDirectionoperation_type: WalletOperationTypestatus: WalletOperationStatussender_address: Stringrecipient_address: Stringamount: BigDecimalcurrency: WalletOperationCurrencygas_cost: Option<BigDecimal>created: DateTime<Utc>modified: DateTime<Utc>

Trait Implementations

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

impl Serialize for WalletOperation[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>,