Enum lcs::DiffComponent [] [src]

pub enum DiffComponent<T> {
    Insertion(T),
    Unchanged(T, T),
    Deletion(T),
}

Variants

Trait Implementations

impl<T: Debug> Debug for DiffComponent<T>
[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for DiffComponent<T>
[src]

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

This method tests for !=.

impl<T: Eq> Eq for DiffComponent<T>
[src]