pub trait Rule: Debug + Spanned {
// Required methods
fn kind(&self) -> Check;
fn apply<'input, 'context, C>(
&self,
context: &mut C,
) -> DiagResult<Matches<'input>>
where C: Context<'input, 'context> + ?Sized;
}
Required Methods§
fn kind(&self) -> Check
fn apply<'input, 'context, C>(
&self,
context: &mut C,
) -> DiagResult<Matches<'input>>where
C: Context<'input, 'context> + ?Sized,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.