Struct whisk::Channel

source ·
pub struct Channel<T = (), U: ?Sized = ()>(_, _);
Expand description

An MPMC channel with both send and receive capabilities

Enable the futures-core feature for Channel to implement Stream (generic T must be Option<Item>).

Enable the pasts feature for Channel to implement Notifier.

Implementations§

source§

impl<T> Channel<T>

source

pub fn new() -> Self

Create a new channel.

source§

impl<T, U> Channel<T, U>

source

pub fn with(user_data: U) -> Self

Create a new channel with associated data.

source§

impl<T, U: ?Sized> Channel<T, U>

source

pub async fn send(&self, message: T)

Send a message on this channel.

source

pub async fn recv(&self) -> T

Receive a message from this channel.

Trait Implementations§

source§

impl<T, U: ?Sized> Clone for Channel<T, U>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T, U: ?Sized> Debug for Channel<T, U>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, U: ?Sized + Default> Default for Channel<T, U>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T, U: ?Sized> Deref for Channel<T, U>

§

type Target = U

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T, U: ?Sized> Drop for Channel<T, U>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T, U: ?Sized> From<Arc<Queue<T, U>>> for Channel<T, U>

source§

fn from(inner: Arc<Queue<T, U>>) -> Self

Converts to this type from the input type.
source§

impl<T, U: ?Sized> From<Channel<T, U>> for Arc<Queue<T, U>>

source§

fn from(channel: Channel<T, U>) -> Self

Converts to this type from the input type.
source§

impl<T, U: ?Sized> Future for Channel<T, U>

§

type Output = T

The type of value produced on completion.
source§

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T>

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
source§

impl<T, U: ?Sized> Notify for Channel<T, U>

§

type Event = T

The event produced by this notify
source§

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T>

Get the next event from this notify, registering a wakeup when not ready. Read more
source§

impl<T, U: ?Sized> Stream for Channel<Option<T>, U>

§

type Item = T

Values yielded by the stream.
source§

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>>

Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more
source§

fn size_hint(&self) -> (usize, Option<usize>)

Returns the bounds on the remaining length of the stream. Read more

Auto Trait Implementations§

§

impl<T = (), U = ()> !RefUnwindSafe for Channel<T, U>

§

impl<T, U: ?Sized> Send for Channel<T, U>where T: Send, U: Send + Sync,

§

impl<T, U: ?Sized> Sync for Channel<T, U>where T: Send, U: Send + Sync,

§

impl<T, U: ?Sized> Unpin for Channel<T, U>

§

impl<T = (), U = ()> !UnwindSafe for Channel<T, U>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<F> Fuse for Fwhere F: Future,

source§

fn fuse(self) -> Option<F>

Fuse the Future
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F> IntoFuture for Fwhere F: Future,

§

type Output = <F as Future>::Output

The output that the future will produce on completion.
§

type IntoFuture = F

Which kind of future are we turning this into?
source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
source§

impl<N> NotifyExt for Nwhere N: Notify + Unpin,

source§

fn next(&mut self) -> Next<'_, Self>

source§

fn map<F>(self, f: F) -> Map<Self, F>

Transform produced Notify::Events with a function.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<F, T, E> TryFuture for Fwhere F: Future<Output = Result<T, E>> + ?Sized,

§

type Ok = T

The type of successful values yielded by this future
§

type Error = E

The type of failures yielded by this future
source§

fn try_poll( self: Pin<&mut F>, cx: &mut Context<'_> ) -> Poll<<F as Future>::Output>

Poll this TryFuture as if it were a Future. Read more
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<S, T, E> TryStream for Swhere S: Stream<Item = Result<T, E>> + ?Sized,

§

type Ok = T

The type of successful values yielded by this future
§

type Error = E

The type of failures yielded by this future
source§

fn try_poll_next( self: Pin<&mut S>, cx: &mut Context<'_> ) -> Poll<Option<Result<<S as TryStream>::Ok, <S as TryStream>::Error>>>

Poll this TryStream as if it were a Stream. Read more