Struct lnp::message::ChannelAnnouncements[][src]

pub struct ChannelAnnouncements {
    pub node_signature_1: Signature,
    pub node_signature_2: Signature,
    pub bitcoin_signature_1: Signature,
    pub bitcoin_signature_2: Signature,
    pub features: InitFeatures,
    pub chain_hash: AssetId,
    pub short_channel_id: ShortChannelId,
    pub node_id_1: PublicKey,
    pub node_id_2: PublicKey,
    pub bitcoin_key_1: PublicKey,
    pub bitcoin_key_2: PublicKey,
}

Fields

node_signature_1: Signature

Node Signature 1

node_signature_2: Signature

Node Signature 2

bitcoin_signature_1: Signature

Bitcoin Signature 1

bitcoin_signature_2: Signature

Bitcoin Signature 2

features: InitFeatures

feature bytes

chain_hash: AssetId

chain hash

short_channel_id: ShortChannelId

Short channel ID

node_id_1: PublicKey

Node Id 1

node_id_2: PublicKey

Node Id 2

bitcoin_key_1: PublicKey

Bitcoin key 1

bitcoin_key_2: PublicKey

Bitcoin key 2

Trait Implementations

impl Clone for ChannelAnnouncements[src]

impl Debug for ChannelAnnouncements[src]

impl Display for ChannelAnnouncements[src]

impl Eq for ChannelAnnouncements[src]

impl LightningDecode for ChannelAnnouncements[src]

impl LightningEncode for ChannelAnnouncements[src]

impl PartialEq<ChannelAnnouncements> for ChannelAnnouncements[src]

impl StrictDecode for ChannelAnnouncements[src]

impl StrictEncode for ChannelAnnouncements[src]

impl StructuralEq for ChannelAnnouncements[src]

impl StructuralPartialEq for ChannelAnnouncements[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,