Enum woot::Operation [] [src]

pub enum Operation<S, I: Key> {
    Ins(Character<S, I>),
    Del(I),
}

Represents an Operation on the WString.

Variants

insert a new Charater

delete character with the given Key

Trait Implementations

impl<S: Clone, I: Clone + Key> Clone for Operation<S, I>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: Debug, P: Key + Debug> Debug for Operation<S, P>
[src]

Formats the value using the given formatter.