pub trait Measure<T> {
    type Operation: Operation<T>;

    fn operations(&self) -> &[Self::Operation];
}
Expand description

Trait for edit distance measures.

Required Associated Types

The edit operations associated with the measure.

Required Methods

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

Implementors