pub struct DataAvailableStream<T: DdsType + Send + Sync + 'static> { /* private fields */ }Expand description
Stream of “data available” events. Yields () every time there
are new samples in the reader. Does not consume samples — the
caller must call take() or take_stream separately.
Trait Implementations§
Source§impl<T: DdsType + Send + Sync + 'static> Stream for DataAvailableStream<T>
impl<T: DdsType + Send + Sync + 'static> Stream for DataAvailableStream<T>
impl<T: DdsType + Send + Sync + 'static> Unpin for DataAvailableStream<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for DataAvailableStream<T>
impl<T> !UnwindSafe for DataAvailableStream<T>
impl<T> Freeze for DataAvailableStream<T>
impl<T> Send for DataAvailableStream<T>
impl<T> Sync for DataAvailableStream<T>
impl<T> UnsafeUnpin for DataAvailableStream<T>
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