[][src]Struct clightningrpc::responses::ListChannelsItem

pub struct ListChannelsItem {
    pub source: String,
    pub destination: String,
    pub short_channel_id: String,
    pub public: bool,
    pub amount_msat: MSat,
    pub message_flags: u64,
    pub channel_flags: u64,
    pub active: bool,
    pub last_update: u64,
    pub base_fee_millisatoshi: u64,
    pub fee_per_millionth: u64,
    pub delay: u64,
    pub htlc_minimum_msat: MSat,
    pub htlc_maximum_msat: MSat,
    pub features: String,
}

Sub-structure for 'listchannels' item

Fields

source: Stringdestination: Stringshort_channel_id: Stringpublic: boolamount_msat: MSatmessage_flags: u64channel_flags: u64active: boollast_update: u64base_fee_millisatoshi: u64fee_per_millionth: u64delay: u64htlc_minimum_msat: MSathtlc_maximum_msat: MSatfeatures: String

Trait Implementations

impl Clone for ListChannelsItem[src]

impl Debug for ListChannelsItem[src]

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

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