[][src]Enum seqalign::measures::LCSOp

pub enum LCSOp {
    Insert(usize),
    Delete(usize),
    Match,
}

Levenshtein operation with associated cost.

Variants

Insert(usize)
Delete(usize)
Match

Trait Implementations

impl Clone for LCSOp[src]

impl Copy for LCSOp[src]

impl Debug for LCSOp[src]

impl Eq for LCSOp[src]

impl Hash for LCSOp[src]

impl<T> Operation<T> for LCSOp where
    T: Eq
[src]

impl Ord for LCSOp[src]

impl PartialEq<LCSOp> for LCSOp[src]

impl PartialOrd<LCSOp> for LCSOp[src]

impl StructuralEq for LCSOp[src]

impl StructuralPartialEq for LCSOp[src]

Auto Trait Implementations

impl RefUnwindSafe for LCSOp

impl Send for LCSOp

impl Sync for LCSOp

impl Unpin for LCSOp

impl UnwindSafe for LCSOp

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.