[−][src]Enum zookeeper_async::WatchedEventType
Enumeration of types of events that may occur on the znode.
Variants
Nothing known has occurred on the znode. This value is issued as part of a WatchedEvent
when the KeeperState changes.
Issued when a znode at a given path is created.
Issued when a znode at a given path is deleted.
Issued when the data of a watched znode are altered. This event value is issued whenever a set operation occurs without an actual contents check, so there is no guarantee the data actually changed.
Issued when the children of a watched znode are created or deleted. This event is not issued when the data within children is altered.
Issued when the client removes a data watcher.
Issued when the client removes a child watcher.
Trait Implementations
impl Clone for WatchedEventType[src]
pub fn clone(&self) -> WatchedEventType[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for WatchedEventType[src]
impl Debug for WatchedEventType[src]
impl Display for WatchedEventType[src]
impl Eq for WatchedEventType[src]
impl Hash for WatchedEventType[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for WatchedEventType[src]
pub fn cmp(&self, other: &WatchedEventType) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<WatchedEventType> for WatchedEventType[src]
pub fn eq(&self, other: &WatchedEventType) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<WatchedEventType> for WatchedEventType[src]
pub fn partial_cmp(&self, other: &WatchedEventType) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for WatchedEventType[src]
impl StructuralPartialEq for WatchedEventType[src]
impl TryFrom<i32> for WatchedEventType[src]
type Error = TryFromPrimitiveError<Self>
The type returned in the event of a conversion error.
pub fn try_from(number: i32) -> Result<Self, TryFromPrimitiveError<Self>>[src]
impl TryFromPrimitive for WatchedEventType[src]
type Primitive = i32
pub const NAME: &'static str[src]
pub fn try_from_primitive(
number: Self::Primitive
) -> Result<Self, TryFromPrimitiveError<Self>>[src]
number: Self::Primitive
) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations
impl RefUnwindSafe for WatchedEventType[src]
impl Send for WatchedEventType[src]
impl Sync for WatchedEventType[src]
impl Unpin for WatchedEventType[src]
impl UnwindSafe for WatchedEventType[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,