pub struct AndExpr<L: Expression<Output = bool>, R: Expression<Output = bool>> { /* private fields */ }Expand description
AND expression
Trait Implementations§
Source§impl<L: Expression<Output = bool>, R: Expression<Output = bool>> Expression for AndExpr<L, R>
impl<L: Expression<Output = bool>, R: Expression<Output = bool>> Expression for AndExpr<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for AndExpr<L, R>
impl<L, R> RefUnwindSafe for AndExpr<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for AndExpr<L, R>
impl<L, R> Sync for AndExpr<L, R>
impl<L, R> Unpin for AndExpr<L, R>
impl<L, R> UnwindSafe for AndExpr<L, R>where
L: UnwindSafe,
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more