pub trait DivUnchecked<Rhs = Self>where
    Rhs: ?Sized,{
    type Output;

    // Required method
    fn div_unchecked(&self, rhs: &Rhs) -> Self::Output;
}
Expand description

Binary operator for dividing two values, without checking specific conditions.

Required Associated Types§

type Output

Required Methods§

fn div_unchecked(&self, rhs: &Rhs) -> Self::Output

Trait Implementations§

source§

impl<E> Metrics<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where E: Environment,

§

type Case = (Mode, Mode)

source§

fn count( case: &<Field<E> as Metrics<dyn DivUnchecked<Field<E>, Output = Field<E>>>>::Case ) -> Count

Returns the number of constants, public inputs, private inputs, and constraints.
source§

impl<E> OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where E: Environment,

§

type Case = (CircuitType<Field<E>>, CircuitType<Field<E>>)

source§

fn output_mode( case: &<Field<E> as OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>>>::Case ) -> Mode

Returns the mode of the output.

Implementors§

source§

impl<E> DivUnchecked<Field<E>> for Field<E>where E: Environment,

§

type Output = Field<E>