Struct clightningrpc::responses::ListPaymentsItem[][src]

pub struct ListPaymentsItem {
    pub id: i64,
    pub payment_hash: String,
    pub destination: String,
    pub msatoshi: i64,
    pub msatoshi_sent: i64,
    pub created_at: i64,
    pub status: String,
    pub payment_preimage: Option<String>,
    pub description: Option<String>,
}

Sub-structure for payments in 'listpayments' and 'waitsendpay'

Fields

Trait Implementations

impl Debug for ListPaymentsItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPaymentsItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations