Trait vec_reg_common::CompiledRegex
source · [−]pub trait CompiledRegex<I> {
fn is_full_match(&self, input: &[I]) -> bool;
fn captures<'a>(&self, input: &'a [I]) -> Option<Vec<Capture<'a, I>>>;
}Required Methods
source
pub trait CompiledRegex<I> {
fn is_full_match(&self, input: &[I]) -> bool;
fn captures<'a>(&self, input: &'a [I]) -> Option<Vec<Capture<'a, I>>>;
}