pub struct UnnecessaryElseNull;Trait Implementations§
Source§impl LintRule for UnnecessaryElseNull
impl LintRule for UnnecessaryElseNull
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Longer description of what this rule checks.
Source§fn check(&self, stmt: &Statement, ctx: &LintContext<'_>) -> Vec<Issue>
fn check(&self, stmt: &Statement, ctx: &LintContext<'_>) -> Vec<Issue>
Check a single parsed statement and return any issues found.
Source§fn sqlfluff_name(&self) -> &'static str
fn sqlfluff_name(&self) -> &'static str
SQLFluff dotted identifier (e.g.,
aliasing.table).Auto Trait Implementations§
impl Freeze for UnnecessaryElseNull
impl RefUnwindSafe for UnnecessaryElseNull
impl Send for UnnecessaryElseNull
impl Sync for UnnecessaryElseNull
impl Unpin for UnnecessaryElseNull
impl UnsafeUnpin for UnnecessaryElseNull
impl UnwindSafe for UnnecessaryElseNull
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