Enum orset::Delta [] [src]

pub enum Delta<T> {
    Add {
        element: T,
        dot: Dot,
    },
    Remove {
        element: T,
        dots: Vec<Dot>,
    },
}

Variants

Fields of Add

Fields of Remove

Trait Implementations

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

Formats the value using the given formatter.

impl<T: Clone> Clone for Delta<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more