Enum zookeeper::WatchedEventType [] [src]

pub enum WatchedEventType {
    None,
    NodeCreated,
    NodeDeleted,
    NodeDataChanged,
    NodeChildrenChanged,
    DataWatchRemoved,
    ChildWatchRemoved,
}

Enumeration of types of events that may occur on the znode.

Variants

Nothing known has occurred on the znode. This value is issued as part of a WatchedEvent when the KeeperState changes.

Issued when a znode at a given path is created.

Issued when a znode at a given path is deleted.

Issued when the data of a watched znode are altered. This event value is issued whenever a set operation occurs without an actual contents check, so there is no guarantee the data actually changed.

Issued when the children of a watched znode are created or deleted. This event is not issued when the data within children is altered.

Issued when the client removes a data watcher.

Issued when the client removes a child watcher.

Trait Implementations

impl Clone for WatchedEventType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for WatchedEventType
[src]

[src]

Formats the value using the given formatter. Read more

impl From<i32> for WatchedEventType
[src]

[src]

Performs the conversion.

Auto Trait Implementations