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