[][src]Enum lnrpc::CommitmentType

#[repr(i32)]pub enum CommitmentType {
    Legacy,
    StaticRemoteKey,
    Anchors,
    UnknownCommitmentType,
}

Variants

Legacy

A channel using the legacy commitment format having tweaked to_remote keys.

StaticRemoteKey

A channel that uses the modern commitment format where the key in the output of the remote party does not change each state. This makes back up and recovery easier as when the channel is closed, the funds go directly to that key.

Anchors

A channel that uses a commitment format that has anchor outputs on the commitments, allowing fee bumping after a force close transaction has been broadcast.

UnknownCommitmentType

Returned when the commitment type isn't known or unavailable.

Implementations

impl CommitmentType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of CommitmentType.

pub fn from_i32(value: i32) -> Option<CommitmentType>[src]

Converts an i32 to a CommitmentType, or None if value is not a valid variant.

Trait Implementations

impl Clone for CommitmentType[src]

impl Copy for CommitmentType[src]

impl Debug for CommitmentType[src]

impl Default for CommitmentType[src]

impl Eq for CommitmentType[src]

impl From<CommitmentType> for i32[src]

impl Hash for CommitmentType[src]

impl Ord for CommitmentType[src]

impl PartialEq<CommitmentType> for CommitmentType[src]

impl PartialOrd<CommitmentType> for CommitmentType[src]

impl StructuralEq for CommitmentType[src]

impl StructuralPartialEq for CommitmentType[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

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

impl<T> WithSubscriber for T[src]