Struct lnp::message::Shutdown[][src]

pub struct Shutdown {
    pub channel_id: ChannelId,
    pub scriptpubkey: Script,
}

Fields

channel_id: ChannelId

The channel ID

scriptpubkey: Script

The destination of this peer’s funds on closing. Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.

Trait Implementations

impl Clone for Shutdown[src]

impl Debug for Shutdown[src]

impl Display for Shutdown[src]

impl Eq for Shutdown[src]

impl LightningDecode for Shutdown[src]

impl LightningEncode for Shutdown[src]

impl PartialEq<Shutdown> for Shutdown[src]

impl StrictDecode for Shutdown[src]

impl StrictEncode for Shutdown[src]

impl StructuralEq for Shutdown[src]

impl StructuralPartialEq for Shutdown[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>,