pub trait Rule: 'static {
const REGEX: LazyCell<Regex>;
const DEFAULT: &'static str;
const ATTRIBUTES: &'static [(&'static str, &'static str)] = _;
}
Required Associated Constants§
Provided Associated Constants§
const ATTRIBUTES: &'static [(&'static str, &'static str)] = _
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.