pub struct LintOptions {
pub select_wildcard: bool,
pub large_in_list: bool,
pub unsupported_embedded_language: bool,
pub delete_without_where: bool,
pub update_without_where: bool,
pub comma_join: bool,
pub order_by_ordinal: bool,
pub large_in_list_threshold: usize,
}Expand description
Lint knobs. Every rule is on by default; each can be disabled independently.
Fields§
§select_wildcard: boolWarn on top-level SELECT * in a select list (SDF001).
large_in_list: boolWarn on large literal IN (...) lists (SDF002).
unsupported_embedded_language: boolWarn when LANGUAGE <name> AS $$...$$ uses an embedded language the formatter cannot
format (SDF003).
delete_without_where: boolWarn on DELETE statements without a WHERE clause (SDF004).
update_without_where: boolWarn on UPDATE statements without a WHERE clause (SDF005).
comma_join: boolWarn on comma joins in FROM — implicit cross joins (SDF006).
order_by_ordinal: boolWarn on ordinal ORDER BY items such as ORDER BY 1 (SDF007).
large_in_list_threshold: usizeItem count above which a literal IN (...) list is considered large.
Trait Implementations§
Source§impl Clone for LintOptions
impl Clone for LintOptions
Source§fn clone(&self) -> LintOptions
fn clone(&self) -> LintOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LintOptions
Source§impl Debug for LintOptions
impl Debug for LintOptions
Source§impl Default for LintOptions
impl Default for LintOptions
Source§fn default() -> LintOptions
fn default() -> LintOptions
Returns the “default value” for a type. Read more
impl Eq for LintOptions
Source§impl PartialEq for LintOptions
impl PartialEq for LintOptions
impl StructuralPartialEq for LintOptions
Auto Trait Implementations§
impl Freeze for LintOptions
impl RefUnwindSafe for LintOptions
impl Send for LintOptions
impl Sync for LintOptions
impl Unpin for LintOptions
impl UnsafeUnpin for LintOptions
impl UnwindSafe for LintOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more