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

pub struct ListChannelsItem {
    pub source: String,
    pub destination: String,
    pub short_channel_id: String,
    pub public: bool,
    pub satoshis: i64,
    pub flags: i64,
    pub active: bool,
    pub last_update: i64,
    pub base_fee_millisatoshi: i64,
    pub fee_per_millionth: i64,
    pub delay: i64,
}

Sub-structure for 'listchannels' item

Fields

Trait Implementations

impl Debug for ListChannelsItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ListChannelsItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations