pub struct UnusedTableAlias { /* private fields */ }Implementations§
Source§impl UnusedTableAlias
impl UnusedTableAlias
pub fn from_config(config: &LintConfig) -> Self
Trait Implementations§
Source§impl Default for UnusedTableAlias
impl Default for UnusedTableAlias
Source§impl LintRule for UnusedTableAlias
impl LintRule for UnusedTableAlias
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 UnusedTableAlias
impl RefUnwindSafe for UnusedTableAlias
impl Send for UnusedTableAlias
impl Sync for UnusedTableAlias
impl Unpin for UnusedTableAlias
impl UnsafeUnpin for UnusedTableAlias
impl UnwindSafe for UnusedTableAlias
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