pub struct WatchGlobally(_);
Expand description

Proxy for ZooKeeper that adds watches for initiated operations.

Triggered watches produce events on the global watcher stream.

Implementations§

Return the Stat of the node of the given path, or None if the node does not exist.

If no errors occur, a watch is left on the node at the given path. The watch is triggered by any successful operation that creates or deletes the node, or sets the node’s data. When the watch triggers, an event is sent to the global watcher stream.

Return the names of the children of the node at the given path, or None if the node does not exist.

The returned list of children is not sorted and no guarantee is provided as to its natural or lexical order.

If no errors occur, a watch is left on the node at the given path. The watch is triggered by any successful operation that deletes the node at the given path, or creates or deletes a child of that node. When the watch triggers, an event is sent to the global watcher stream.

Return the data and the Stat of the node at the given path, or None if it does not exist.

If no errors occur, a watch is left on the node at the given path. The watch is triggered by any successful operation that sets the node’s data, or deletes it. When the watch triggers, an event is sent to the global watcher stream.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.