pub trait FromFields {
    type Field: FieldTrait;

    fn from_fields(fields: &[Self::Field]) -> Result<Self, Error>;
}
Expand description

Unary operator for converting from a list of base elements.

Required Associated Types

Required Methods

Initializes an object from a list of base field elements.

Implementations on Foreign Types

Initializes a new group by recovering the x-coordinate of an affine group from a field element.

Initializes a new integer by recovering the x-coordinate of an affine group from a field element.

Implementors