Enum sesdiff::EditInstruction[][src]

pub enum EditInstruction<T> {
    Insertion(T),
    Deletion(T),
    Identity(T),
    GenericIdentity(u32),
    InsertionOptions(Vec<T>),
    DeletionOptions(Vec<T>),
    IdentityOptions(Vec<T>),
}

Variants

Insertion(T)

An insertion

Deletion(T)

A deletion

Identity(T)

An identity check

GenericIdentity(u32)

An identity check for a specific length (a generic abstraction)

InsertionOptions(Vec<T>)

A disjunction over multiple possible insertions

DeletionOptions(Vec<T>)

A disjunction over multiple possible deletions

IdentityOptions(Vec<T>)

A disjunction over multiple possible identities

Implementations

impl EditInstruction<&str>[src]

pub fn to_owned(&self) -> EditInstruction<String>[src]

This is technically different from using the ToOwned trait because I couldn’t get the Borrow<> counterpart to work out.

impl EditInstruction<String>[src]

pub fn as_ref(&self) -> EditInstruction<&str>[src]

impl<T> EditInstruction<T>[src]

pub fn is_change(&self) -> bool[src]

Trait Implementations

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

impl<T: Display> Display for EditInstruction<T>[src]

impl FromStr for EditInstruction<String>[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl<T> RefUnwindSafe for EditInstruction<T> where
    T: RefUnwindSafe

impl<T> Send for EditInstruction<T> where
    T: Send

impl<T> Sync for EditInstruction<T> where
    T: Sync

impl<T> Unpin for EditInstruction<T> where
    T: Unpin

impl<T> UnwindSafe for EditInstruction<T> where
    T: UnwindSafe

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> ToString for T where
    T: Display + ?Sized
[src]

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.