pub struct SigningCeremonyStatus {
pub phase: CeremonyPhase,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub signature_secret: Option<String>,
pub error: Option<String>,
}Expand description
Status of a signing ceremony.
Fields§
§phase: CeremonyPhase§started_at: Option<String>§completed_at: Option<String>§signature_secret: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for SigningCeremonyStatus
impl Clone for SigningCeremonyStatus
Source§fn clone(&self) -> SigningCeremonyStatus
fn clone(&self) -> SigningCeremonyStatus
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 SigningCeremonyStatus
impl Debug for SigningCeremonyStatus
Source§impl<'de> Deserialize<'de> for SigningCeremonyStatus
impl<'de> Deserialize<'de> for SigningCeremonyStatus
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
Auto Trait Implementations§
impl Freeze for SigningCeremonyStatus
impl RefUnwindSafe for SigningCeremonyStatus
impl Send for SigningCeremonyStatus
impl Sync for SigningCeremonyStatus
impl Unpin for SigningCeremonyStatus
impl UnsafeUnpin for SigningCeremonyStatus
impl UnwindSafe for SigningCeremonyStatus
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