Struct sesdiff::EditScript[][src]

pub struct EditScript<T> {
    pub mode: Mode,
    pub distance: u32,
    pub instructions: Vec<EditInstruction<T>>,
}

Fields

mode: Modedistance: u32instructions: Vec<EditInstruction<T>>

Implementations

impl EditScript<&str>[src]

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

impl EditScript<String>[src]

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

impl<T> EditScript<T>[src]

pub fn len(&self) -> usize[src]

Trait Implementations

impl ApplyEditScript for EditScript<String>[src]

impl ApplyEditScript for EditScript<&str>[src]

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

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

impl FromStr for EditScript<String>[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for EditScript<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.