pub trait Modulus<Value: Clone + Eq>: Clone + Eq {
    fn to_modulus(&self) -> Cow<'_, Value>;

    fn into_modulus(self) -> Value { ... }
}

Required methods

Provided methods

Implementations on Foreign Types

Implementors