[][src]Struct regex::Match

pub struct Match<'t> { /* fields omitted */ }

Match represents a single match of a regex in a haystack.

The lifetime parameter 't refers to the lifetime of the matched text.

Methods

impl<'t> Match<'t>[src]

pub fn start(&self) -> usize[src]

Returns the starting byte offset of the match in the haystack.

pub fn end(&self) -> usize[src]

Returns the ending byte offset of the match in the haystack.

pub fn as_str(&self) -> &'t str[src]

Returns the matched text.

Trait Implementations

impl<'t> Eq for Match<'t>[src]

impl<'t> Clone for Match<'t>[src]

impl<'t> PartialEq<Match<'t>> for Match<'t>[src]

impl<'t> From<Match<'t>> for &'t str[src]

impl<'t> Copy for Match<'t>[src]

impl<'t> Debug for Match<'t>[src]

Auto Trait Implementations

impl<'t> Sync for Match<'t>

impl<'t> Send for Match<'t>

impl<'t> Unpin for Match<'t>

impl<'t> UnwindSafe for Match<'t>

impl<'t> RefUnwindSafe for Match<'t>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]