pub enum HavingCondition {
AggregateComparison {
aggregate: AggregateFunction,
op: HavingOp,
value: Value,
},
}Expand description
A condition in the HAVING clause.
HAVING conditions reference aggregate results (e.g., HAVING COUNT(*) > 5).
Variants§
AggregateComparison
Compare an aggregate function result to a literal value.
Trait Implementations§
Source§impl Clone for HavingCondition
impl Clone for HavingCondition
Source§fn clone(&self) -> HavingCondition
fn clone(&self) -> HavingCondition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Freeze for HavingCondition
impl RefUnwindSafe for HavingCondition
impl Send for HavingCondition
impl Sync for HavingCondition
impl Unpin for HavingCondition
impl UnsafeUnpin for HavingCondition
impl UnwindSafe for HavingCondition
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