Trait BinaryAction

Source
pub trait BinaryAction<A, B = A> {
    type Output;

    // Required method
    fn activate(&self, lhs: A, rhs: B) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn activate(&self, lhs: A, rhs: B) -> Self::Output

Implementors§