Skip to main content

Captures

Struct Captures 

Source
pub struct Captures<'t> { /* private fields */ }
Expand description

Capture groups from a match.

Implementations§

Source§

impl<'t> Captures<'t>

Source

pub fn get(&self, index: usize) -> Option<Match<'t>>

Get the full match (group 0).

Source

pub fn name(&self, name: &str) -> Option<Match<'t>>

Get a capture by name.

Source

pub fn len(&self) -> usize

Get the number of capture groups (including group 0).

Source

pub fn is_empty(&self) -> bool

Check if there are no captures.

Source

pub fn iter(&self) -> CapturesIter<'_, 't>

Iterate over all captures.

Source

pub fn similarity(&self) -> f32

Get the similarity score.

Source

pub fn edits(&self) -> &EditCounts

Get edit counts.

Source

pub fn fuzzy_counts(&self) -> (u32, u32, u32)

Get fuzzy counts as (insertions, deletions, substitutions).

This matches the API of mrab-regex’s fuzzy_counts property.

Source

pub fn fuzzy_changes(&self) -> (Vec<usize>, Vec<usize>, Vec<usize>)

Get fuzzy changes as (insertions, deletions, substitutions).

This matches the API of mrab-regex’s fuzzy_changes property.

Source

pub fn expand(&self, replacement: &str) -> String

Expand a replacement string with capture references.

Supports $0, $1, etc. for numbered groups and $name for named groups.

Trait Implementations§

Source§

impl<'t> Clone for Captures<'t>

Source§

fn clone(&self) -> Captures<'t>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'t> Debug for Captures<'t>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'c, 't> IntoIterator for &'c Captures<'t>

Source§

type Item = Option<Match<'t>>

The type of the elements being iterated over.
Source§

type IntoIter = CapturesIter<'c, 't>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'t> Freeze for Captures<'t>

§

impl<'t> RefUnwindSafe for Captures<'t>

§

impl<'t> Send for Captures<'t>

§

impl<'t> Sync for Captures<'t>

§

impl<'t> Unpin for Captures<'t>

§

impl<'t> UnsafeUnpin for Captures<'t>

§

impl<'t> UnwindSafe for Captures<'t>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.