Trait acme_core::ops::binary::BinArgs

source ·
pub trait BinArgs {
    type Lhs;
    type Rhs;

    // Required methods
    fn lhs(&self) -> &Self::Lhs;
    fn rhs(&self) -> &Self::Rhs;
}

Required Associated Types§

Required Methods§

source

fn lhs(&self) -> &Self::Lhs

source

fn rhs(&self) -> &Self::Rhs

Implementations on Foreign Types§

source§

impl<A, B> BinArgs for (A, B)

§

type Lhs = A

§

type Rhs = B

source§

fn lhs(&self) -> &Self::Lhs

source§

fn rhs(&self) -> &Self::Rhs

Implementors§

source§

impl<A, B> BinArgs for BinaryArgs<A, B>

§

type Lhs = A

§

type Rhs = B