pub struct HavingConditionsCount {
pub max_conditions: usize,
}Fields§
§max_conditions: usizeMaximum number of conditions allowed in a HAVING clause. A clause with N conditions is connected by N-1 AND/OR operators. When the condition count exceeds this maximum the clause is flagged.
Trait Implementations§
Source§impl Default for HavingConditionsCount
impl Default for HavingConditionsCount
Source§impl Rule for HavingConditionsCount
impl Rule for HavingConditionsCount
Auto Trait Implementations§
impl Freeze for HavingConditionsCount
impl RefUnwindSafe for HavingConditionsCount
impl Send for HavingConditionsCount
impl Sync for HavingConditionsCount
impl Unpin for HavingConditionsCount
impl UnsafeUnpin for HavingConditionsCount
impl UnwindSafe for HavingConditionsCount
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