[][src]Struct lightning::ln::chan_utils::TxCreationKeys

pub struct TxCreationKeys {
    pub per_commitment_point: PublicKey,
    // some fields omitted
}

The set of public keys which are used in the creation of one commitment transaction. These are derived from the channel base keys and per-commitment data.

Fields

per_commitment_point: PublicKey

The per-commitment public key which was used to derive the other keys.

Trait Implementations

impl Clone for TxCreationKeys[src]

impl PartialEq<TxCreationKeys> for TxCreationKeys[src]

impl Readable for TxCreationKeys[src]

impl StructuralPartialEq for TxCreationKeys[src]

impl Writeable for TxCreationKeys[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> 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.