Enum zookeeper_client::CreateMode
source · pub enum CreateMode {
Persistent,
PersistentSequential,
Ephemeral,
EphemeralSequential,
Container,
}
Expand description
CreateMode specifies ZooKeeper znode type. It covers all znode types with help from CreateOptions::with_ttl.
Variants§
Trait Implementations§
source§impl Clone for CreateMode
impl Clone for CreateMode
source§fn clone(&self) -> CreateMode
fn clone(&self) -> CreateMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateMode
impl Debug for CreateMode
source§impl PartialEq<CreateMode> for CreateMode
impl PartialEq<CreateMode> for CreateMode
source§fn eq(&self, other: &CreateMode) -> bool
fn eq(&self, other: &CreateMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.