Skip to main content

Match

Struct Match 

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

A single match in the text.

Implementations§

Source§

impl<'t> Match<'t>

Source

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

Get the matched text.

Source

pub fn start(&self) -> usize

Get the start byte offset.

Source

pub fn end(&self) -> usize

Get the end byte offset.

Source

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

Get the byte range.

Source

pub fn len(&self) -> usize

Get the length in bytes.

Source

pub fn is_empty(&self) -> bool

Check if empty.

Source

pub fn similarity(&self) -> f32

Get the similarity score (0.0 - 1.0).

Source

pub fn edits(&self) -> &EditCounts

Get the edit counts.

Source

pub fn total_edits(&self) -> u8

Get the total number of edits.

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.

  • insertions: characters in the text not in the pattern
  • deletions: characters in the pattern not in the text
  • substitutions: characters that differ between pattern and text
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. Returns positions within the matched text where edits occurred.

Note: This requires the original pattern to compute accurately. If the pattern was not provided during matching, returns empty vectors.

Source

pub fn fuzzy_changes_with_pattern( &self, pattern: &str, ) -> (Vec<usize>, Vec<usize>, Vec<usize>)

Get fuzzy changes given the original pattern.

This computes the edit positions by comparing the matched text against the original pattern.

Source

pub fn partial(&self) -> bool

Check if this is a partial match.

A partial match is one that reaches the end of the input text without completing the match. This is useful when searching through streamed or truncated text.

Trait Implementations§

Source§

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

Source§

fn clone(&self) -> Match<'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 Match<'t>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'t> Freeze for Match<'t>

§

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> UnsafeUnpin for Match<'t>

§

impl<'t> UnwindSafe for Match<'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.