pub struct Receiver<T> { /* private fields */ }Expand description
A oneshot broadcast receiver.
The Receiver offers two methods for receiving the message:
-
let (tx, rx) = channel(); tx.send(0); let message: u32 = rx.await.unwrap(); -
let (tx, rx) = channel(); tx.send(0); let message: &u32 = rx.borrowed().await.unwrap();
Implementations§
Source§impl<T> Receiver<T>
impl<T> Receiver<T>
Sourcepub fn borrowed(&self) -> BorrowedReceiverFuture<'_, T> ⓘ
pub fn borrowed(&self) -> BorrowedReceiverFuture<'_, T> ⓘ
Receive a borrowed message from the Sender.
This may be more efficient than Receiver::into_future
and doesn’t require T: Clone.
This is cancellation-safe.
Trait Implementations§
Source§impl<T: Clone> IntoFuture for Receiver<T>
impl<T: Clone> IntoFuture for Receiver<T>
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
This future is cancellation-safe.
Source§type Output = Result<T, SenderDropped>
type Output = Result<T, SenderDropped>
The output that the future will produce on completion.
Source§type IntoFuture = ReceiverFuture<T>
type IntoFuture = ReceiverFuture<T>
Which kind of future are we turning this into?
Auto Trait Implementations§
impl<T> Freeze for Receiver<T>
impl<T> RefUnwindSafe for Receiver<T>where
Arc<Shared<T>>: RefUnwindSafe,
impl<T> Send for Receiver<T>
impl<T> Sync for Receiver<T>
impl<T> Unpin for Receiver<T>
impl<T> UnsafeUnpin for Receiver<T>where
Arc<Shared<T>>: UnsafeUnpin,
impl<T> UnwindSafe for Receiver<T>where
Arc<Shared<T>>: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more