Struct tokio_zookeeper::WatchedEvent[][src]

pub struct WatchedEvent {
    pub event_type: WatchedEventType,
    pub keeper_state: KeeperState,
    pub path: String,
}

Represents a change on the ZooKeeper that a Watcher is able to respond to.

The WatchedEvent includes exactly what happened, the current state of the ZooKeeper, and the path of the znode that was involved in the event.

Fields

The trigger that caused the watch to hit.

The current state of ZooKeeper (and the client's connection to it).

The path of the znode that was involved.

Trait Implementations

impl Clone for WatchedEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WatchedEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for WatchedEvent
[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 WatchedEvent
[src]

Auto Trait Implementations