Enum zookeeper_async::KeeperState [−][src]
#[repr(i32)]
pub enum KeeperState {
Disconnected,
SyncConnected,
AuthFailed,
ConnectedReadOnly,
SaslAuthenticated,
Expired,
}
Expand description
Enumeration of states the client may be at a Watcher Event. It represents the state of the server at the time the event was generated.
Variants
The client is in the disconnected state - it is not connected to any server in the ensemble.
The client is in the connected state - it is connected to a server in the ensemble (one of the servers specified in the host connection parameter during ZooKeeper client creation).
Authentication has failed – connection requires a new ZooKeeper
instance.
The client is connected to a read-only server, that is the server which is not currently connected to the majority. The only operations allowed after receiving this state is read operations. This state is generated for read-only clients only since read/write clients aren’t allowed to connect to read-only servers.
Used to notify clients that they are SASL-authenticated, so that they can perform ZooKeeper actions with their SASL-authorized permissions.
The serving cluster has expired this session. The ZooKeeper client connection (the session)
is no longer valid. You must create a new client connection (instantiate a new ZooKeeper
instance) if you with to access the ensemble.
Trait Implementations
Performs the conversion.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
type Error = TryFromPrimitiveError<Self>
type Error = TryFromPrimitiveError<Self>
The type returned in the event of a conversion error.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for KeeperState
impl Send for KeeperState
impl Sync for KeeperState
impl Unpin for KeeperState
impl UnwindSafe for KeeperState
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