pub struct StandardRuleProvider;Expand description
Provider for standard markdown rules (MD001-MD059)
Trait Implementations§
Source§impl RuleProvider for StandardRuleProvider
impl RuleProvider for StandardRuleProvider
Source§fn provider_id(&self) -> &'static str
fn provider_id(&self) -> &'static str
Unique identifier for this rule provider
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Human-readable description of this rule provider
Source§fn register_rules(&self, registry: &mut RuleRegistry)
fn register_rules(&self, registry: &mut RuleRegistry)
Register all rules from this provider with the registry
Source§fn config_schema(&self) -> Option<Value>
fn config_schema(&self) -> Option<Value>
Provider-specific configuration schema
Source§fn initialize(&self) -> Result<()>
fn initialize(&self) -> Result<()>
Provider initialization hook
Auto Trait Implementations§
impl Freeze for StandardRuleProvider
impl RefUnwindSafe for StandardRuleProvider
impl Send for StandardRuleProvider
impl Sync for StandardRuleProvider
impl Unpin for StandardRuleProvider
impl UnwindSafe for StandardRuleProvider
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