pub struct Subscriber<T>{
thread: JoinHandle<()>,
rx: Receiver<T>,
}Fields§
§thread: JoinHandle<()>§rx: Receiver<T>Implementations§
Source§impl<T> Subscriber<T>
impl<T> Subscriber<T>
Trait Implementations§
Source§impl<T> PipelineLayer<T> for Subscriber<T>
impl<T> PipelineLayer<T> for Subscriber<T>
Auto Trait Implementations§
impl<T> Freeze for Subscriber<T>
impl<T> !RefUnwindSafe for Subscriber<T>
impl<T> Send for Subscriber<T>
impl<T> !Sync for Subscriber<T>
impl<T> Unpin for Subscriber<T>
impl<T> !UnwindSafe for Subscriber<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