Struct partiql_logical::Having
source · pub struct Having {
pub expr: ValueExpr,
}
Expand description
Having
represents the having operator, e.g. HAVING a = 10
in SELECT b FROM t GROUP BY a, b HAVING a = 10
.
Fields§
§expr: ValueExpr
Trait Implementations§
source§impl PartialEq<Having> for Having
impl PartialEq<Having> for Having
impl Eq for Having
impl StructuralEq for Having
impl StructuralPartialEq for Having
Auto Trait Implementations§
impl RefUnwindSafe for Having
impl Send for Having
impl Sync for Having
impl Unpin for Having
impl UnwindSafe 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