pub struct RoundInfo {
pub can_finalize: bool,
pub is_echo: bool,
pub round_number: u8,
}
Available on crate features
cggmp
or frost-ed25519
only.Expand description
Information about the current found which can be retrieved from a driver.
Fields§
§can_finalize: bool
Whether the round is ready to be finalized.
is_echo: bool
Whether the round is an echo round.
round_number: u8
Round number.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RoundInfo
impl RefUnwindSafe for RoundInfo
impl Send for RoundInfo
impl Sync for RoundInfo
impl Unpin for RoundInfo
impl UnwindSafe for RoundInfo
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