Enum ditto::set::LocalOp [] [src]

pub enum LocalOp<T> {
    Insert(T),
    Remove(T),
}

Variants

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for LocalOp<T>
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl<T> Send for LocalOp<T> where
    T: Send

impl<T> Sync for LocalOp<T> where
    T: Sync