[][src]Enum porigon::LevenshteinDistance

pub enum LevenshteinDistance {
    Exact(u8),
    AtLeast(u8),
}

Levenshtein Distance computed by a Levenshtein Automaton.

Levenshtein automata can only compute the exact Levenshtein distance up to a given max_distance.

Over this distance, the automaton will invariably return Distance::AtLeast(max_distance + 1).

Variants

Exact(u8)
AtLeast(u8)

Methods

impl Distance[src]

pub fn to_u8(&self) -> u8[src]

Returns the highest lower bound for the distance. It is equivalent to

match distance {
    Distance::Exact(d) |
    Distance::AtLeast(d) => d,
}

Trait Implementations

impl Clone for Distance[src]

impl Copy for Distance[src]

impl Debug for Distance[src]

impl Eq for Distance[src]

impl PartialEq<Distance> for Distance[src]

impl PartialOrd<Distance> for Distance[src]

impl StructuralEq for Distance[src]

impl StructuralPartialEq for Distance[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> 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.