Struct Channel

Source
pub struct Channel<T = (), U: ?Sized = ()>(/* private fields */);
Expand description

An MPMC channel with both send and receive capabilities

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

Enable the event_iterator feature for Channel to implement EventIterator.

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>

Source§

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> EventIterator for Channel<T, U>

Source§

type Event<'me> = T where Self: 'me

The type of the events being iterated over
Source§

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

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

fn next<'a>(self: Pin<&'a mut Self>) -> Next<'a, Self>

Create a future that resolves to the next event in the event iterator. Read more
Source§

fn next_unpinned(&mut self) -> Next<'_, Self>
where Self: Unpin,

Create a future that resolves to the next event in the event iterator. Read more
Source§

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

Return the bounds on the remaining length of the event iterator. Read more
Source§

fn map<B, F>(self, f: F) -> Map<Self, F>
where Self: Sized + EventIterator, F: for<'me> FnMut(Self::Event<'me>) -> B,

Takes a closure and creates an event iterator which calls that closure on each event. 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>

Source§

type Output = T

The type of value produced on completion.
Source§

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

Attempts 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> Stream for Channel<Option<T>, U>

Source§

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> Freeze for Channel<T, U>
where U: ?Sized,

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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<I> IntoEventIterator for I
where I: EventIterator + 'static,

Source§

type Event<'me> = <I as EventIterator>::Event<'me> where I: 'me

The type of the event yielded by the event iterator
Source§

type IntoEventIter = I

The type of the resulting event iterator
Source§

fn into_event_iter(self) -> <I as IntoEventIterator>::IntoEventIter

Convert self into an event iterator.
Source§

impl<F> IntoFuture for F
where F: Future,

Source§

type Output = <F as Future>::Output

The output that the future will produce on completion.
Source§

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

type Ok = T

The type of successful values yielded by this future
Source§

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 T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

type Ok = T

The type of successful values yielded by this future
Source§

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