pub trait CubicExtFieldArith {
type Base: ExtField;
// Provided methods
fn mul_assign(
lhs: &mut CubicExtField<Self::Base>,
rhs: &CubicExtField<Self::Base>,
) { ... }
fn square_assign(el: &mut CubicExtField<Self::Base>) { ... }
}
Required Associated Types§
Provided Methods§
fn mul_assign( lhs: &mut CubicExtField<Self::Base>, rhs: &CubicExtField<Self::Base>, )
fn square_assign(el: &mut CubicExtField<Self::Base>)
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.