pub enum RoundPreparation {
Run(PreparedRound),
Complete(Option<String>),
}Expand description
Result of preparing the next primary round.
Variants§
Run(PreparedRound)
Run the prepared provider round.
Complete(Option<String>)
Finish without starting another provider round.
Trait Implementations§
Source§impl Clone for RoundPreparation
impl Clone for RoundPreparation
Source§fn clone(&self) -> RoundPreparation
fn clone(&self) -> RoundPreparation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RoundPreparation
impl Debug for RoundPreparation
impl Eq for RoundPreparation
Source§impl PartialEq for RoundPreparation
impl PartialEq for RoundPreparation
impl StructuralPartialEq for RoundPreparation
Auto Trait Implementations§
impl Freeze for RoundPreparation
impl RefUnwindSafe for RoundPreparation
impl Send for RoundPreparation
impl Sync for RoundPreparation
impl Unpin for RoundPreparation
impl UnsafeUnpin for RoundPreparation
impl UnwindSafe for RoundPreparation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.