pub struct CommitmentSignedBatch {
pub batch_size: u16,
pub funding_txid: Txid,
}Expand description
Optional batch parameters for commitment_signed message.
Fields§
§batch_size: u16Batch size N: all N commitment_signed messages must be received before being processed
funding_txid: TxidThe funding transaction, to discriminate among multiple pending funding transactions (e.g. in case of splicing)
Trait Implementations§
Source§impl Clone for CommitmentSignedBatch
impl Clone for CommitmentSignedBatch
Source§fn clone(&self) -> CommitmentSignedBatch
fn clone(&self) -> CommitmentSignedBatch
Returns a duplicate 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 Debug for CommitmentSignedBatch
impl Debug for CommitmentSignedBatch
Source§impl Hash for CommitmentSignedBatch
impl Hash for CommitmentSignedBatch
Source§impl PartialEq for CommitmentSignedBatch
impl PartialEq for CommitmentSignedBatch
Source§impl Readable for CommitmentSignedBatch
impl Readable for CommitmentSignedBatch
Source§impl Writeable for CommitmentSignedBatch
impl Writeable for CommitmentSignedBatch
impl Eq for CommitmentSignedBatch
impl StructuralPartialEq for CommitmentSignedBatch
Auto Trait Implementations§
impl Freeze for CommitmentSignedBatch
impl RefUnwindSafe for CommitmentSignedBatch
impl Send for CommitmentSignedBatch
impl Sync for CommitmentSignedBatch
impl Unpin for CommitmentSignedBatch
impl UnwindSafe for CommitmentSignedBatch
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