[][src]Struct clightningrpc::responses::DecodePay

pub struct DecodePay {
    pub currency: String,
    pub created_at: u64,
    pub expiry: u64,
    pub payee: String,
    pub amount_msat: Option<MSat>,
    pub description: Option<String>,
    pub description_hash: Option<String>,
    pub min_final_cltv_expiry: u64,
    pub payment_secret: Option<String>,
    pub features: Option<String>,
    pub fallbacks: Option<Vec<Fallback>>,
    pub routes: Option<Vec<Vec<DecodePayRoute>>>,
    pub extra: Option<Vec<Extra>>,
    pub payment_hash: String,
    pub signature: String,
}

'decodepay' command

Fields

currency: Stringcreated_at: u64expiry: u64payee: Stringamount_msat: Option<MSat>description: Option<String>description_hash: Option<String>min_final_cltv_expiry: u64payment_secret: Option<String>features: Option<String>fallbacks: Option<Vec<Fallback>>routes: Option<Vec<Vec<DecodePayRoute>>>extra: Option<Vec<Extra>>payment_hash: Stringsignature: String

Trait Implementations

impl Clone for DecodePay[src]

impl Debug for DecodePay[src]

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

impl Serialize for DecodePay[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> 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.