Trait And

Source
pub trait And<T, RHS> {
    // Required method
    fn and(self, rhs: RHS) -> Expr<T>;
}

Required Methods§

Source

fn and(self, rhs: RHS) -> Expr<T>

Implementors§

Source§

impl<T, LHS, RHS> And<T, RHS> for LHS
where RHS: Into<Expr<T>>, LHS: Into<Expr<T>>,