pub trait BinaryParams: Params<Pattern = (Self::Lhs, Self::Rhs)> {
type Lhs;
type Rhs;
// Required methods
fn lhs(&self) -> &Self::Lhs;
fn rhs(&self) -> &Self::Rhs;
}
pub trait BinaryParams: Params<Pattern = (Self::Lhs, Self::Rhs)> {
type Lhs;
type Rhs;
// Required methods
fn lhs(&self) -> &Self::Lhs;
fn rhs(&self) -> &Self::Rhs;
}