[][src]Struct clightningrpc::responses::Pay

pub struct Pay {
    pub id: u64,
    pub payment_hash: String,
    pub destination: String,
    pub msatoshi: u64,
    pub msatoshi_sent: u64,
    pub created_at: u64,
    pub status: String,
    pub payment_preimage: String,
    pub description: String,
    pub getroute_tries: u64,
    pub sendpay_tries: u64,
    pub route: Vec<RouteItem>,
    pub failures: Vec<FailureItem>,
}

'pay' command

Fields

id: u64payment_hash: Stringdestination: Stringmsatoshi: u64msatoshi_sent: u64created_at: u64status: Stringpayment_preimage: Stringdescription: Stringgetroute_tries: u64sendpay_tries: u64route: Vec<RouteItem>failures: Vec<FailureItem>

Trait Implementations

impl Clone for Pay[src]

impl Debug for Pay[src]

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

impl Serialize for Pay[src]

Auto Trait Implementations

impl RefUnwindSafe for Pay

impl Send for Pay

impl Sync for Pay

impl Unpin for Pay

impl UnwindSafe for Pay

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> 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.