[][src]Trait httptest::mappers::IntoRegex

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

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...