Enum lcs_diff::DiffResult [] [src]

pub enum DiffResult<T: PartialEq + Clone> {
    Removed(DiffElement<T>),
    Common(DiffElement<T>),
    Added(DiffElement<T>),
}

Variants

Trait Implementations

impl<T: Debug + PartialEq + Clone> Debug for DiffResult<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: PartialEq + PartialEq + Clone> PartialEq for DiffResult<T>
[src]

[src]

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

[src]

This method tests for !=.