pub struct WithWatcher(_);
Expand description

Proxy for ZooKeeper that adds non-global watches for initiated operations.

Events from triggered watches are yielded through returned oneshot channels. All events are also produced 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 will be 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 data on the node, and in turn causes the included oneshot::Receiver to resolve.

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, and in turn causes the included oneshot::Receiver to resolve.

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, and in turn causes the included oneshot::Receiver to resolve.

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.