pub trait FromFpFq {
// Required methods
fn from_fp(fp: Fp) -> Self;
fn from_fq(fp: Fq) -> Self;
}
Expand description
Trait helping converting generics into concrete types
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.