pub struct MaxJoinOnConditions {
pub max_conditions: usize,
}Fields§
§max_conditions: usizeMaximum number of conditions allowed in a single JOIN ON 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 MaxJoinOnConditions
impl Default for MaxJoinOnConditions
Source§impl Rule for MaxJoinOnConditions
impl Rule for MaxJoinOnConditions
Auto Trait Implementations§
impl Freeze for MaxJoinOnConditions
impl RefUnwindSafe for MaxJoinOnConditions
impl Send for MaxJoinOnConditions
impl Sync for MaxJoinOnConditions
impl Unpin for MaxJoinOnConditions
impl UnsafeUnpin for MaxJoinOnConditions
impl UnwindSafe for MaxJoinOnConditions
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