pub struct Having {
pub conditions: Vec<Expr>,
}Expand description
HAVING a AND b
Structurally identical to Where and deliberately a separate
type: a statement has at most one of each, and a having mod must not be
accepted where only a WHERE exists.
Fields§
§conditions: Vec<Expr>The conditions, in the order they were appended.
Implementations§
Trait Implementations§
Source§impl Expression for Having
impl Expression for Having
Auto Trait Implementations§
impl !RefUnwindSafe for Having
impl !UnwindSafe for Having
impl Freeze for Having
impl Send for Having
impl Sync for Having
impl Unpin for Having
impl UnsafeUnpin for Having
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