pub trait Expr<F: FieldExt> {
    fn expr(&self) -> Expression<F>;
}
Expand description

Trait that implements functionality to get a constant expression from commonly used types.

Required Methods

Returns an expression for the type.

Implementations on Foreign Types

Implementors