[][src]Trait clacc::bigint::BigIntMul

pub trait BigIntMul<T> {
    type Output;
    fn mul(&self, other: T) -> Self::Output;
}

A trait describing BigInt multiplication.

Associated Types

type Output

Loading content...

Required methods

fn mul(&self, other: T) -> Self::Output

Loading content...

Implementors

impl<'a> BigIntMul<&'a BigIntGmp> for BigIntGmp[src]

type Output = Self

Loading content...