pub trait BinOp<T> {
    fn op(lhs: T, rhs: T) -> T;
}

Required Methods

Implementors