halo2curves::ff_ext::cubic

Trait CubicExtFieldArith

Source
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§

Source

fn mul_assign( lhs: &mut CubicExtField<Self::Base>, rhs: &CubicExtField<Self::Base>, )

Source

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.

Implementors§