pub enum CeremonyPhase {
Round1,
Round1SetAttestation,
Round2,
Finalize,
RootSigning,
}Expand description
Ceremony phase associated with a portal envelope.
Variants§
Round1
DKG round one broadcast.
Round1SetAttestation
Roster-wide round one set attestation.
Round2
DKG round two pairwise exchange.
Finalize
Final DKG confirmation.
RootSigning
Root artifact signing.
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 moreimpl Copy for CeremonyPhase
Source§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
impl Eq for CeremonyPhase
Source§impl Ord for CeremonyPhase
impl Ord for CeremonyPhase
Source§fn cmp(&self, other: &CeremonyPhase) -> Ordering
fn cmp(&self, other: &CeremonyPhase) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. 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 PartialOrd for CeremonyPhase
impl PartialOrd for CeremonyPhase
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