Trait Dot

Source
pub trait Dot<Rhs = Self> {
    type Output;

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

Required Associated Types§

Required Methods§

Source

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

Implementors§