pub trait ToScalar<F> {
    fn to_scalar(&self) -> Option<F>;
}
Expand description

Trait used to define types that can be converted to a 256 bit scalar value.

Required Methods

Convert the type to a scalar value.

Implementations on Foreign Types

Implementors