pub enum RoundEvent {
Attempt(RoundAttempt),
VtxoProposal(VtxoProposal),
RoundProposal(RoundProposal),
Finished(RoundFinished),
}Variants§
Attempt(RoundAttempt)
VtxoProposal(VtxoProposal)
RoundProposal(RoundProposal)
Finished(RoundFinished)
Implementations§
Trait Implementations§
Source§impl Clone for RoundEvent
impl Clone for RoundEvent
Source§fn clone(&self) -> RoundEvent
fn clone(&self) -> RoundEvent
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 RoundEvent
impl Debug for RoundEvent
Auto Trait Implementations§
impl Freeze for RoundEvent
impl RefUnwindSafe for RoundEvent
impl Send for RoundEvent
impl Sync for RoundEvent
impl Unpin for RoundEvent
impl UnwindSafe for RoundEvent
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