pub struct HavingCondition {
pub field: AggregateField,
pub op: HavingOp,
pub value: f64,
}Expand description
A condition for the HAVING clause.
Fields§
§field: AggregateFieldThe aggregate field to check.
op: HavingOpThe comparison operator.
value: f64The value to compare against.
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 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