Trait IntoRegexRef

Source
pub trait IntoRegexRef {
    // Required method
    fn into_regex_ref(self) -> Cow<'static, Regex>;
}

Required Methods§

Source

fn into_regex_ref(self) -> Cow<'static, Regex>

Implementations on Foreign Types§

Source§

impl IntoRegexRef for String

Source§

fn into_regex_ref(self) -> Cow<'static, Regex>

Source§

impl IntoRegexRef for Regex

Source§

fn into_regex_ref(self) -> Cow<'static, Regex>

Source§

impl<'a> IntoRegexRef for &'a str

Source§

fn into_regex_ref(self) -> Cow<'static, Regex>

Source§

impl<'a> IntoRegexRef for &'a String

Source§

fn into_regex_ref(self) -> Cow<'static, Regex>

Source§

impl<'a> IntoRegexRef for &'a Regex

Source§

fn into_regex_ref(self) -> Cow<'static, Regex>

Implementors§