Prefix

Trait Prefix 

Source
pub trait Prefix {
    // Required method
    fn validate_prefix(&self, pat: &str) -> bool;
}

Required Methods§

Source

fn validate_prefix(&self, pat: &str) -> bool

Implementations on Foreign Types§

Source§

impl<T: Prefix> Prefix for Option<T>

Source§

fn validate_prefix(&self, pat: &str) -> bool

Implementors§

Source§

impl<T: AsStr> Prefix for T