pub enum WatchFrame {
KeepAlive,
Event(Box<WatchEvent>),
}Expand description
One decoded frame from a live notification stream.
Variants§
KeepAlive
A server keepalive that must not be shown as an object event.
Event(Box<WatchEvent>)
One object notification record.
Trait Implementations§
Source§impl Clone for WatchFrame
impl Clone for WatchFrame
Source§fn clone(&self) -> WatchFrame
fn clone(&self) -> WatchFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WatchFrame
impl Debug for WatchFrame
impl Eq for WatchFrame
Source§impl PartialEq for WatchFrame
impl PartialEq for WatchFrame
impl StructuralPartialEq for WatchFrame
Auto Trait Implementations§
impl Freeze for WatchFrame
impl RefUnwindSafe for WatchFrame
impl Send for WatchFrame
impl Sync for WatchFrame
impl Unpin for WatchFrame
impl UnsafeUnpin for WatchFrame
impl UnwindSafe for WatchFrame
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more