fedimint_core::config

Trait DkgGroup

Source
pub trait DkgGroup:
    Group
    + Mul<Scalar, Output = Self>
    + Curve
    + GroupEncoding
    + SGroup
    + Unpin { }
Expand description

Defines a group (e.g. G1 or G2) that we can generate keys for

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Group + Mul<Scalar, Output = T> + Curve + GroupEncoding + SGroup + Unpin> DkgGroup for T