pub struct SignSpliceTx {
pub tx: WithSize<Transaction>,
pub psbt: WithSize<PsbtWrapper>,
pub remote_funding_key: PubKey,
pub input_index: u32,
}
Expand description
CLN only
Fields§
§tx: WithSize<Transaction>
§psbt: WithSize<PsbtWrapper>
§remote_funding_key: PubKey
§input_index: u32
Trait Implementations§
Source§impl BigEndianEncodable for SignSpliceTx
impl BigEndianEncodable for SignSpliceTx
Source§impl DeBolt for SignSpliceTx
impl DeBolt for SignSpliceTx
Source§impl Debug for SignSpliceTx
impl Debug for SignSpliceTx
Source§impl Decodable for SignSpliceTx
impl Decodable for SignSpliceTx
Source§impl Encodable for SignSpliceTx
impl Encodable for SignSpliceTx
Auto Trait Implementations§
impl Freeze for SignSpliceTx
impl RefUnwindSafe for SignSpliceTx
impl Send for SignSpliceTx
impl Sync for SignSpliceTx
impl Unpin for SignSpliceTx
impl UnwindSafe for SignSpliceTx
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
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more