Trait generic_ec_core::Multiplicative

source ·
pub trait Multiplicative<Rhs> {
    type Output;

    // Required method
    fn mul(a: &Self, b: &Rhs) -> Self::Output;
}
Expand description

Type for which multiplication is defined

Required Associated Types§

source

type Output

Type of multiplication output

Required Methods§

source

fn mul(a: &Self, b: &Rhs) -> Self::Output

Computes a * b

Object Safety§

This trait is not object safe.

Implementors§