Enum nt::CallbackType[][src]

pub enum CallbackType {
    Add,
    Update,
    Delete,
}

Enum representing the types of actions that can notify callbacks when they occur

Variants

Notifies callbacks when a new value is added

Notifies callbacks when an existing value was validly updated

Notifies callbacks when a value was deleted

Trait Implementations

impl PartialEq for CallbackType
[src]

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

This method tests for !=.

impl Eq for CallbackType
[src]

impl Hash for CallbackType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for CallbackType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations