pub struct RoundFinalizationEvent {
pub id: String,
pub round_tx: Psbt,
pub vtxo_tree: TxTree,
pub connector_tree: TxTree,
pub connectors_index: HashMap<OutPoint, OutPoint>,
pub min_relay_fee_rate: i64,
}
Fields§
§id: String
§round_tx: Psbt
§vtxo_tree: TxTree
§connector_tree: TxTree
§connectors_index: HashMap<OutPoint, OutPoint>
The key is the VTXO outpoint; the value is the corresponding connector outpoint.
min_relay_fee_rate: i64
Trait Implementations§
Source§impl Clone for RoundFinalizationEvent
impl Clone for RoundFinalizationEvent
Source§fn clone(&self) -> RoundFinalizationEvent
fn clone(&self) -> RoundFinalizationEvent
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 moreAuto Trait Implementations§
impl Freeze for RoundFinalizationEvent
impl RefUnwindSafe for RoundFinalizationEvent
impl Send for RoundFinalizationEvent
impl Sync for RoundFinalizationEvent
impl Unpin for RoundFinalizationEvent
impl UnwindSafe for RoundFinalizationEvent
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