pub trait Multiply<Right: ?Sized, Output> {
    fn multiply(&self, _: &Right) -> Output;
}
Expand description

A multiplication.

Required Methods§

Perform the multiplication.

Implementors§