Struct broot::pattern::FuzzyPattern[][src]

pub struct FuzzyPattern { /* fields omitted */ }

A pattern for fuzzy matching

Implementations

impl FuzzyPattern[src]

pub fn from(pat: &str) -> Self[src]

build a pattern which will later be usable for fuzzy search. A pattern should be reused

pub fn find(&self, candidate: &str) -> Option<NameMatch>[src]

return a match if the pattern can be found in the candidate string. The algorithm tries to return the best one. For example if you search “abc” in “ababca-abc”, the returned match would be at the end.

pub fn score_of(&self, candidate: &str) -> Option<i32>[src]

compute the score of the best match, in a way mostly similar to find but faster by not storing match positions

Trait Implementations

impl Clone for FuzzyPattern[src]

impl Debug for FuzzyPattern[src]

impl Display for FuzzyPattern[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,