pub trait DynamicRegexHelper<'a, 'b, C, R>where
    C: Context<'a>,{
    // Required method
    fn into_dyn_regex(self) -> DynamicRegex<'b, C, R>
       where Self: Sized;
}

Required Methods§

source

fn into_dyn_regex(self) -> DynamicRegex<'b, C, R>where Self: Sized,

Implementors§

source§

impl<'a, 'b, C, R, T> DynamicRegexHelper<'a, 'b, C, R> for Twhere C: Context<'a> + Match<C>, T: Fn(&mut C) -> Result<R, Error> + 'b,