Enum ted::buffer::Event [] [src]

pub enum Event {
    Insert {
        char_idx: usize,
        text: String,
    },
    Remove {
        char_idx_range: Range<usize>,
    },
}

Variants

Fields of Insert

Fields of Remove

Trait Implementations

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Event

impl Sync for Event