pub trait ToFields {
    type Field: FieldTrait;

    fn to_fields(&self) -> Result<Vec<Self::Field, Global>, Error>;
}
Expand description

Unary operator for converting to a list of base fields.

Required Associated Types

Required Methods

Returns the object as a list of base field elements.

Implementations on Foreign Types

Returns the address as field elements.

Returns the group as field elements.

Returns the integer as field elements.

Returns this record as a list of field elements.

Returns this record as a list of field elements.

Returns the stack value as a list of fields.

Returns this locator as a list of field elements.

Returns this program ID as a list of field elements.

Returns this ciphertext as a list of field elements.

Returns this plaintext as a list of field elements.

Implementors