Pattern

Trait Pattern 

Source
pub trait Pattern {
    // Required method
    fn validate_pattern<M: Matcher>(&self, matcher: &M) -> bool;
}

Required Methods§

Source

fn validate_pattern<M: Matcher>(&self, matcher: &M) -> bool

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.

Implementations on Foreign Types§

Source§

impl<T: Pattern> Pattern for Option<T>

Source§

fn validate_pattern<M: Matcher>(&self, matcher: &M) -> bool

Implementors§

Source§

impl<T: AsStr> Pattern for T