pub enum CeremonyPhase {
Pending,
KeygenRunning,
Signing,
Completed,
Failed,
}Expand description
Phases of a signing ceremony lifecycle.
Variants§
Pending
Ceremony has been created but not started.
KeygenRunning
DKG is in progress.
Signing
DKG complete; signing in progress.
Completed
Ceremony completed; signature stored.
Failed
Ceremony failed.
Trait Implementations§
Source§impl Clone for CeremonyPhase
impl Clone for CeremonyPhase
Source§fn clone(&self) -> CeremonyPhase
fn clone(&self) -> CeremonyPhase
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 CeremonyPhase
impl Debug for CeremonyPhase
Source§impl<'de> Deserialize<'de> for CeremonyPhase
impl<'de> Deserialize<'de> for CeremonyPhase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CeremonyPhase
impl PartialEq for CeremonyPhase
Source§fn eq(&self, other: &CeremonyPhase) -> bool
fn eq(&self, other: &CeremonyPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CeremonyPhase
impl Serialize for CeremonyPhase
impl StructuralPartialEq for CeremonyPhase
Auto Trait Implementations§
impl Freeze for CeremonyPhase
impl RefUnwindSafe for CeremonyPhase
impl Send for CeremonyPhase
impl Sync for CeremonyPhase
impl Unpin for CeremonyPhase
impl UnsafeUnpin for CeremonyPhase
impl UnwindSafe for CeremonyPhase
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