Enum liner::Action
[−]
[src]
pub enum Action {
Insert {
start: usize,
text: Vec<char>,
},
Remove {
start: usize,
text: Vec<char>,
},
}Variants
InsertFields
start: usize | |
text: Vec<char> |
RemoveFields
start: usize | |
text: Vec<char> |
Methods
impl Action[src]
Trait Implementations
impl Clone for Action[src]
fn clone(&self) -> Action
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more