Struct otter_api_tests::imports::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.

Implementations

impl<'t> Match<'t>

pub fn start(&self) -> usize

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

pub fn end(&self) -> usize

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

pub fn range(&self) -> Range<usize>

Notable traits for Range<A>

impl<A> Iterator for Range<A> where
    A: Step
type Item = A;

Returns the range over the starting and ending byte offsets of the match in the haystack.

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

Returns the matched text.

Trait Implementations

impl<'t> Clone for Match<'t>

impl<'t> Copy for Match<'t>

impl<'t> Debug for Match<'t>

impl<'t> Eq for Match<'t>

impl<'t> From<Match<'t>> for &'t str

impl<'t> From<Match<'t>> for Range<usize>

impl<'t> PartialEq<Match<'t>> for Match<'t>

impl<'t> StructuralEq for Match<'t>

impl<'t> StructuralPartialEq for Match<'t>

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

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

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,