pub trait FromField {
    type Field: FieldTrait;

    fn from_field(field: Self::Field) -> Self;
}
Expand description

Unary operator for converting from a base field element.

Required Associated Types

Required Methods

Casts a circuit from a base field element.

Implementors