pub trait MatchFind {
    type Range;

    // Required methods
    fn end(&self) -> usize;
    fn as_match(&self) -> Self::Range;
}
Available on crate feature regex only.

Required Associated Types§

Required Methods§

source

fn end(&self) -> usize

source

fn as_match(&self) -> Self::Range

Implementations on Foreign Types§

source§

impl<'t> MatchFind for Match<'t>

§

type Range = &'t [u8]

source§

fn end(&self) -> usize

source§

fn as_match(&self) -> Self::Range

source§

impl<'t> MatchFind for Match<'t>

§

type Range = &'t str

source§

fn end(&self) -> usize

source§

fn as_match(&self) -> Self::Range

Implementors§