Struct regex::Match [−][src]
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>
[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 range(&self) -> Range<usize>
[src]
Returns the range over the starting and ending byte offsets of the match in the haystack.
pub fn as_str(&self) -> &'t str
[src]
Returns the matched text.
Trait Implementations
impl<'t> Clone for Match<'t>
[src]
impl<'t> Copy for Match<'t>
[src]
impl<'t> Debug for Match<'t>
[src]
impl<'t> Eq for Match<'t>
[src]
impl<'t> From<Match<'t>> for &'t str
[src]
impl<'t> From<Match<'t>> for Range<usize>
[src]
impl<'t> PartialEq<Match<'t>> for Match<'t>
[src]
impl<'t> StructuralEq for Match<'t>
[src]
impl<'t> StructuralPartialEq for Match<'t>
[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,