[][src]Struct lnpbp::lnp::application::payment::channel::Keyset

pub struct Keyset {
    pub funding_pubkey: PublicKey,
    pub revocation_basepoint: PublicKey,
    pub payment_basepoint: PublicKey,
    pub delayed_payment_basepoint: PublicKey,
    pub htlc_basepoint: PublicKey,
    pub first_per_commitment_point: PublicKey,
    pub shutdown_scriptpubkey: Option<Script>,
}

Fields

funding_pubkey: PublicKeyrevocation_basepoint: PublicKeypayment_basepoint: PublicKeydelayed_payment_basepoint: PublicKeyhtlc_basepoint: PublicKeyfirst_per_commitment_point: PublicKeyshutdown_scriptpubkey: Option<Script>

Trait Implementations

impl Clone for Keyset[src]

impl Debug for Keyset[src]

impl DumbDefault for Keyset[src]

impl Eq for Keyset[src]

impl<'_> From<&'_ AcceptChannel> for Keyset[src]

impl<'_> From<&'_ OpenChannel> for Keyset[src]

impl PartialEq<Keyset> for Keyset[src]

impl StrictDecode for Keyset[src]

type Error = Error

Implementation-dependent error type

impl StrictEncode for Keyset[src]

type Error = Error

Implementation-dependent error type

impl StructuralEq for Keyset[src]

impl StructuralPartialEq for Keyset[src]

Auto Trait Implementations

impl RefUnwindSafe for Keyset

impl Send for Keyset

impl Sync for Keyset

impl Unpin for Keyset

impl UnwindSafe for Keyset

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, 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>,