pub trait FromField {
    type Field: FieldTrait;

    fn from_field(field: &Self::Field) -> Result<Self, Error>;
}
Expand description

Unary operator for converting from a base field element.

Required Associated Types

Required Methods

Initializes an object from a base field element.

Implementors