pub trait FancyRegexExt {
// Required method
fn py_split<'a>(&'a self, input: &'a str) -> Result<PySplit<'a>>;
}Available on crate feature
fancy-regex only.Expand description
Extension trait for fancy_regex::Regex to provide more convenient methods.