pub enum NotInStyle {
Prefix,
Infix,
}Expand description
Strategy for rendering negated IN predicates.
Variants§
Prefix
Emit NOT x IN (...) in generic mode (current compatibility behavior).
Infix
Emit x NOT IN (...) in generic mode (canonical SQL style).
Trait Implementations§
Source§impl Clone for NotInStyle
impl Clone for NotInStyle
Source§fn clone(&self) -> NotInStyle
fn clone(&self) -> NotInStyle
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 moreSource§impl Debug for NotInStyle
impl Debug for NotInStyle
Source§impl Default for NotInStyle
impl Default for NotInStyle
Source§fn default() -> NotInStyle
fn default() -> NotInStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for NotInStyle
impl PartialEq for NotInStyle
impl Copy for NotInStyle
impl Eq for NotInStyle
impl StructuralPartialEq for NotInStyle
Auto Trait Implementations§
impl Freeze for NotInStyle
impl RefUnwindSafe for NotInStyle
impl Send for NotInStyle
impl Sync for NotInStyle
impl Unpin for NotInStyle
impl UnsafeUnpin for NotInStyle
impl UnwindSafe for NotInStyle
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