DivAssignUnsafe

Trait DivAssignUnsafe 

Source
pub trait DivAssignUnsafe<Rhs = Self>: Sized {
    // Required method
    fn div_assign_unsafe(&mut self, other: Rhs);
}
Expand description

Division assignment operation that is undefined behavior when the denominator is not invertible.

Required Methods§

Source

fn div_assign_unsafe(&mut self, other: Rhs)

Undefined behavior when denominator is not invertible.

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.

Implementations on Foreign Types§

Source§

impl DivAssignUnsafe for Fq2

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl DivAssignUnsafe for Fq12

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl DivAssignUnsafe for Fq

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl DivAssignUnsafe for Fq2

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl DivAssignUnsafe for Fq12

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl DivAssignUnsafe for Fq

Source§

fn div_assign_unsafe(&mut self, other: Self)

Source§

impl<'a> DivAssignUnsafe<&'a Fp2> for Fq2

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq2)

Source§

impl<'a> DivAssignUnsafe<&'a Fp12> for Fq12

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq12)

Source§

impl<'a> DivAssignUnsafe<&'a Fp> for Fq

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq)

Source§

impl<'a> DivAssignUnsafe<&'a Fq2> for Fq2

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq2)

Source§

impl<'a> DivAssignUnsafe<&'a Fq12> for Fq12

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq12)

Source§

impl<'a> DivAssignUnsafe<&'a Fq> for Fq

Source§

fn div_assign_unsafe(&mut self, other: &'a Fq)

Implementors§