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
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