pub struct ChannelInfo {
    pub features: ChannelFeatures,
    pub node_one: NodeId,
    pub one_to_two: Option<ChannelUpdateInfo>,
    pub node_two: NodeId,
    pub two_to_one: Option<ChannelUpdateInfo>,
    pub capacity_sats: Option<u64>,
    pub announcement_message: Option<ChannelAnnouncement>,
    /* private fields */
}
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: NodeId

Source node of the first direction of a channel

one_to_two: Option<ChannelUpdateInfo>

Details about the first direction of a channel

node_two: NodeId

Source node of the second direction of a channel

two_to_one: Option<ChannelUpdateInfo>

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.

Implementations

Returns a DirectedChannelInfo for the channel directed to the given target from a returned source, or None if target is not one of the channel’s counterparties.

Returns a DirectedChannelInfo for the channel directed from the given source to a returned target, or None if source is not one of the channel’s counterparties.

Returns a ChannelUpdateInfo based on the direction implied by the channel_flag.

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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Reads a Self in from the given Read

Writes self out to the given Writer

Writes self out to a Vec

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

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Reads a Self in from the given Read

The resulting type after obtaining ownership.

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

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.