Struct seqalign::measures::Levenshtein [] [src]

pub struct Levenshtein { /* fields omitted */ }

Levenshtein distance.

Levenshtein distance uses the following operations:

  • Insert
  • Delete
  • Substitute
  • Match

Methods

impl Levenshtein
[src]

Construct a Levenshtein measure with the associated insertion, deletion, and substitution cost.

[src]

Trait Implementations

impl Clone for Levenshtein
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Levenshtein
[src]

[src]

Formats the value using the given formatter. Read more

impl<T> Measure<T> for Levenshtein where
    T: Eq
[src]

The edit operations associated with the measure.

[src]

Get a slice with the measure's operations. Typically, this contains all the enum variants of the associated type Operation. Read more

Auto Trait Implementations

impl Send for Levenshtein

impl Sync for Levenshtein