pub struct RuleST02 {}
Trait Implementations§
source§impl Rule for RuleST02
impl Rule for RuleST02
fn load_from_config(&self, _config: &AHashMap<String, Value>) -> ErasedRule
fn name(&self) -> &'static str
fn description(&self) -> &'static str
fn eval(&self, context: RuleContext<'_>) -> Vec<LintResult>
fn crawl_behaviour(&self) -> Crawler
fn lint_phase(&self) -> &'static str
fn config_ref(&self) -> &'static str
fn groups(&self) -> &'static [&'static str]
fn code(&self) -> &'static str
fn is_fix_compatible(&self) -> bool
fn crawl( &self, dialect: &Dialect, fix: bool, tree: ErasedSegment, config: &FluffConfig ) -> (Vec<SQLLintError>, Vec<LintFix>)
fn process_lint_result( &self, res: LintResult, new_lerrs: &mut Vec<SQLLintError>, new_fixes: &mut Vec<LintFix> )
Auto Trait Implementations§
impl Freeze for RuleST02
impl RefUnwindSafe for RuleST02
impl Send for RuleST02
impl Sync for RuleST02
impl Unpin for RuleST02
impl UnwindSafe for RuleST02
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> 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