Struct zookeeper_async::WatchedEvent [−][src]
pub struct WatchedEvent {
pub event_type: WatchedEventType,
pub keeper_state: KeeperState,
pub path: Option<String>,
}
Expand description
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
event_type: WatchedEventType
The trigger that caused the watch to hit.
keeper_state: KeeperState
The current state of ZooKeeper (and the client’s connection to it).
path: Option<String>
The path of the znode that was involved. This will be None
for session-related triggers.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WatchedEvent
impl Send for WatchedEvent
impl Sync for WatchedEvent
impl Unpin for WatchedEvent
impl UnwindSafe for WatchedEvent
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more