pub trait FromGroup {
    type Group: GroupTrait<Self::Scalar>;
    type Scalar: ScalarTrait;

    fn from_group(group: Self::Group) -> Self;
}
Expand description

Unary operator for converting from an affine group element.

Required Associated Types

Required Methods

Casts a circuit from an affine group element.

Implementors