Trait httptest::matchers::IntoRegex[][src]

pub trait IntoRegex {
    fn into_regex(self) -> Regex;
}

Create a regex.

This trait may panic if the regex failed to build.

Required methods

fn into_regex(self) -> Regex[src]

turn self into a regex.

Loading content...

Implementations on Foreign Types

impl IntoRegex for &str[src]

impl IntoRegex for String[src]

impl IntoRegex for &mut RegexBuilder[src]

impl IntoRegex for Regex[src]

Loading content...

Implementors

Loading content...