Struct lightning::routing::network_graph::ChannelInfo[][src]

pub struct ChannelInfo {
    pub features: ChannelFeatures,
    pub node_one: PublicKey,
    pub one_to_two: Option<DirectionalChannelInfo>,
    pub node_two: PublicKey,
    pub two_to_one: Option<DirectionalChannelInfo>,
    pub capacity_sats: Option<u64>,
    pub announcement_message: Option<ChannelAnnouncement>,
}
Expand description

Details about a channel (both directions). Received within a channel announcement.

Fields

features: ChannelFeatures

Protocol features of a channel communicated during its announcement

node_one: PublicKey

Source node of the first direction of a channel

one_to_two: Option<DirectionalChannelInfo>

Details about the first direction of a channel

node_two: PublicKey

Source node of the second direction of a channel

two_to_one: Option<DirectionalChannelInfo>

Details about the second direction of a channel

capacity_sats: Option<u64>

The channel capacity as seen on-chain, if chain lookup is available.

announcement_message: Option<ChannelAnnouncement>

An initial announcement of the channel Mostly redundant with the data we store in fields explicitly. Everything else is useful only for sending out for initial routing sync. Not stored if contains excess data to prevent DoS.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Reads a Self in from the given Read

Writes self out to the given Writer

Gets the length of this object after it has been serialized. This can be overridden to optimize cases where we prepend an object with its length. Read more

Writes self out to a Vec

Writes self out to a Vec

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.