Struct lightning::sign::StaticPaymentOutputDescriptor
source · pub struct StaticPaymentOutputDescriptor {
pub outpoint: OutPoint,
pub output: TxOut,
pub channel_keys_id: [u8; 32],
pub channel_value_satoshis: u64,
}
Expand description
Information about a spendable output to our “payment key”.
See SpendableOutputDescriptor::StaticPaymentOutput
for more details on how to spend this.
Fields§
§outpoint: OutPoint
The outpoint which is spendable.
output: TxOut
The output which is referenced by the given outpoint.
channel_keys_id: [u8; 32]
Arbitrary identification information returned by a call to ChannelSigner::channel_keys_id
.
This may be useful in re-deriving keys used in the channel to spend the output.
channel_value_satoshis: u64
The value of the channel which this transactions spends.
Implementations§
source§impl StaticPaymentOutputDescriptor
impl StaticPaymentOutputDescriptor
sourcepub const MAX_WITNESS_LENGTH: usize = 108usize
pub const MAX_WITNESS_LENGTH: usize = 108usize
The maximum length a well-formed witness spending one of these should have. Note: If you have the grind_signatures feature enabled, this will be at least 1 byte shorter.
Trait Implementations§
source§impl Clone for StaticPaymentOutputDescriptor
impl Clone for StaticPaymentOutputDescriptor
source§fn clone(&self) -> StaticPaymentOutputDescriptor
fn clone(&self) -> StaticPaymentOutputDescriptor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<StaticPaymentOutputDescriptor> for StaticPaymentOutputDescriptor
impl PartialEq<StaticPaymentOutputDescriptor> for StaticPaymentOutputDescriptor
source§fn eq(&self, other: &StaticPaymentOutputDescriptor) -> bool
fn eq(&self, other: &StaticPaymentOutputDescriptor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Writeable for StaticPaymentOutputDescriptor
impl Writeable for StaticPaymentOutputDescriptor
impl Eq for StaticPaymentOutputDescriptor
impl StructuralEq for StaticPaymentOutputDescriptor
impl StructuralPartialEq for StaticPaymentOutputDescriptor
Auto Trait Implementations§
impl RefUnwindSafe for StaticPaymentOutputDescriptor
impl Send for StaticPaymentOutputDescriptor
impl Sync for StaticPaymentOutputDescriptor
impl Unpin for StaticPaymentOutputDescriptor
impl UnwindSafe for StaticPaymentOutputDescriptor
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more