pub struct WatchHandle {
pub id: Uuid,
}Expand description
Subscription handle returned by WatcherPort::watch.
Fields§
§id: UuidAdapter-local subscription id.
Trait Implementations§
Source§impl Clone for WatchHandle
impl Clone for WatchHandle
Source§fn clone(&self) -> WatchHandle
fn clone(&self) -> WatchHandle
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 moreimpl Copy for WatchHandle
Source§impl Debug for WatchHandle
impl Debug for WatchHandle
Source§impl<'de> Deserialize<'de> for WatchHandle
impl<'de> Deserialize<'de> for WatchHandle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WatchHandle
Source§impl PartialEq for WatchHandle
impl PartialEq for WatchHandle
Source§impl Serialize for WatchHandle
impl Serialize for WatchHandle
impl StructuralPartialEq for WatchHandle
Auto Trait Implementations§
impl Freeze for WatchHandle
impl RefUnwindSafe for WatchHandle
impl Send for WatchHandle
impl Sync for WatchHandle
impl Unpin for WatchHandle
impl UnsafeUnpin for WatchHandle
impl UnwindSafe for WatchHandle
Blanket Implementations§
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