pub struct EventRecv<E: From<Error>>(/* private fields */);Expand description
Receiver side of an explicitly bounded channel that lets us send bounded (backpressured) events, but unbounded error messages.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for EventRecv<E>
impl<E> RefUnwindSafe for EventRecv<E>
impl<E> Send for EventRecv<E>where
E: Send,
impl<E> Sync for EventRecv<E>where
E: Send,
impl<E> Unpin for EventRecv<E>
impl<E> UnwindSafe for EventRecv<E>
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