pub struct RoundProposal {
pub round_seq: RoundSeq,
pub attempt_seq: usize,
pub cosign_sigs: Vec<Signature>,
pub forfeit_nonces: HashMap<VtxoId, Vec<PublicNonce>>,
pub connector_pubkey: PublicKey,
}Fields§
§round_seq: RoundSeq§attempt_seq: usize§cosign_sigs: Vec<Signature>§forfeit_nonces: HashMap<VtxoId, Vec<PublicNonce>>§connector_pubkey: PublicKeyTrait Implementations§
Source§impl Clone for RoundProposal
impl Clone for RoundProposal
Source§fn clone(&self) -> RoundProposal
fn clone(&self) -> RoundProposal
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 RoundProposal
impl RefUnwindSafe for RoundProposal
impl Send for RoundProposal
impl Sync for RoundProposal
impl Unpin for RoundProposal
impl UnwindSafe for RoundProposal
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