pub struct SigningCeremonySpec {
pub scheme: String,
pub threshold: u32,
pub party_count: u32,
pub message_ref: ConfigMapRef,
pub output_ref: SecretRef,
}Expand description
ConfiumSigningCeremony custom resource spec.
Fields§
§scheme: StringThreshold scheme: cmp20 or gg18.
threshold: u32Threshold T.
party_count: u32Total party count N.
message_ref: ConfigMapRefReference to the message to sign.
output_ref: SecretRefReference to where the output signature should be stored.
Trait Implementations§
Source§impl Clone for SigningCeremonySpec
impl Clone for SigningCeremonySpec
Source§fn clone(&self) -> SigningCeremonySpec
fn clone(&self) -> SigningCeremonySpec
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 SigningCeremonySpec
impl Debug for SigningCeremonySpec
Source§impl<'de> Deserialize<'de> for SigningCeremonySpec
impl<'de> Deserialize<'de> for SigningCeremonySpec
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 SigningCeremonySpec
impl RefUnwindSafe for SigningCeremonySpec
impl Send for SigningCeremonySpec
impl Sync for SigningCeremonySpec
impl Unpin for SigningCeremonySpec
impl UnsafeUnpin for SigningCeremonySpec
impl UnwindSafe for SigningCeremonySpec
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