pub struct SubscriptionHandle<M> { /* private fields */ }Expand description
Handle to a subscriber
This is a lightweight handle that references a subscriber registered
with a Node. The type parameter M ensures type safety when receiving.
Trait Implementations§
Source§impl<M> Clone for SubscriptionHandle<M>
impl<M> Clone for SubscriptionHandle<M>
impl<M> Copy for SubscriptionHandle<M>
Source§impl<M: Debug> Debug for SubscriptionHandle<M>
impl<M: Debug> Debug for SubscriptionHandle<M>
impl<M> Eq for SubscriptionHandle<M>
Source§impl<M> PartialEq for SubscriptionHandle<M>
impl<M> PartialEq for SubscriptionHandle<M>
Auto Trait Implementations§
impl<M> Freeze for SubscriptionHandle<M>
impl<M> RefUnwindSafe for SubscriptionHandle<M>where
M: RefUnwindSafe,
impl<M> Send for SubscriptionHandle<M>where
M: Send,
impl<M> Sync for SubscriptionHandle<M>where
M: Sync,
impl<M> Unpin for SubscriptionHandle<M>where
M: Unpin,
impl<M> UnsafeUnpin for SubscriptionHandle<M>
impl<M> UnwindSafe for SubscriptionHandle<M>where
M: UnwindSafe,
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