Enum rundo_types::string_type::StrOP [] [src]

pub enum StrOP {
    Ins {
        idx: usize,
        value: String,
    },
    Del {
        idx: usize,
        value: String,
    },
    Chg {
        idx: usize,
        from: String,
        to: String,
    },
}

Variants

Fields of Ins

Fields of Del

Fields of Chg

Trait Implementations

impl PartialEq for StrOP
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for StrOP
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for StrOP

impl Sync for StrOP