Struct seqalign::op::IndexedOperation [] [src]

pub struct IndexedOperation<O> where
    O: Debug
{ /* fields omitted */ }

An indexed edit operation.

Indexed edit operations are a pairing of an edit operation and the sequence positions when/where the operation was applied. The indexes can be used to simplify external use of the operations. For example, if we are interested in which elements were aligned, then a subsequence of matches

  • match 1 2
  • match 3 7
  • match 4 10

Tells us that indices 1/2, 3/7, and 4/10 of the source/target sequence were aligned.

Methods

impl<'a, O> IndexedOperation<O> where
    O: Debug
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<O: Clone> Clone for IndexedOperation<O> where
    O: Debug
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<O: Debug> Debug for IndexedOperation<O> where
    O: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<O: Eq> Eq for IndexedOperation<O> where
    O: Debug
[src]

impl<O: Hash> Hash for IndexedOperation<O> where
    O: Debug
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<O: PartialEq> PartialEq for IndexedOperation<O> where
    O: Debug
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl<O> Send for IndexedOperation<O> where
    O: Send

impl<O> Sync for IndexedOperation<O> where
    O: Sync