Trait RegionalRule

Source
pub trait RegionalRule: 'static {
    const REGEX: LazyCell<Regex>;
    const DEFAULT: &'static str;
    const ATTRIBUTES: &'static [(&'static str, &'static str)] = _;
}

Required Associated Constants§

Source

const REGEX: LazyCell<Regex>

Source

const DEFAULT: &'static str

Provided Associated Constants§

Source

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.

Implementors§