Struct futures::channel::mpsc::Sender [−][src]
pub struct Sender<T>(_);
Expand description
The transmission end of a bounded mpsc channel.
This value is created by the channel function.
Implementations
impl<T> Sender<T>[src]
impl<T> Sender<T>[src]pub fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>>[src]
pub fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>>[src]Attempts to send a message on this Sender, returning the message
if there was an error.
pub fn start_send(&mut self, msg: T) -> Result<(), SendError>[src]
pub fn start_send(&mut self, msg: T) -> Result<(), SendError>[src]Send a message on the channel.
This function should only be called after
poll_ready has reported that the channel is
ready to receive a message.
pub fn poll_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), SendError>>[src]
pub fn poll_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), SendError>>[src]Polls the channel to determine if there is guaranteed capacity to send at least one item without waiting.
Return value
This method returns:
Poll::Ready(Ok(_))if there is sufficient capacity;Poll::Pendingif the channel may not have capacity, in which case the current task is queued to be notified once capacity is available;Poll::Ready(Err(SendError))if the receiver has been dropped.
pub fn is_closed(&self) -> bool[src]
pub fn is_closed(&self) -> bool[src]Returns whether this channel is closed without needing a context.
pub fn close_channel(&mut self)[src]
pub fn close_channel(&mut self)[src]Closes this channel from the sender side, preventing any new messages.
pub fn disconnect(&mut self)[src]
pub fn disconnect(&mut self)[src]Disconnects this sender from the channel, closing it if there are no more senders left.
pub fn same_receiver(&self, other: &Sender<T>) -> bool[src]
pub fn same_receiver(&self, other: &Sender<T>) -> bool[src]Returns whether the senders send to the same receiver.
pub fn is_connected_to(&self, receiver: &Receiver<T>) -> bool[src]
pub fn is_connected_to(&self, receiver: &Receiver<T>) -> bool[src]Returns whether the sender send to this receiver.
pub fn hash_receiver<H>(&self, hasher: &mut H) where
H: Hasher, [src]
pub fn hash_receiver<H>(&self, hasher: &mut H) where
H: Hasher, [src]Hashes the receiver into the provided hasher
Trait Implementations
impl<T> Sink<T> for Sender<T>[src]
impl<T> Sink<T> for Sender<T>[src]pub fn poll_ready(
self: Pin<&mut Sender<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), <Sender<T> as Sink<T>>::Error>>[src]
pub fn poll_ready(
self: Pin<&mut Sender<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), <Sender<T> as Sink<T>>::Error>>[src]Attempts to prepare the Sink to receive a value. Read more
pub fn start_send(
self: Pin<&mut Sender<T>>,
msg: T
) -> Result<(), <Sender<T> as Sink<T>>::Error>[src]
pub fn start_send(
self: Pin<&mut Sender<T>>,
msg: T
) -> Result<(), <Sender<T> as Sink<T>>::Error>[src]Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready which returned Poll::Ready(Ok(())). Read more
Auto Trait Implementations
impl<T> !RefUnwindSafe for Sender<T>
impl<T> Send for Sender<T> where
T: Send,
T: Send,
impl<T> Sync for Sender<T> where
T: Send,
T: Send,
impl<T> Unpin for Sender<T>
impl<T> !UnwindSafe for Sender<T>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T, Item> SinkExt<Item> for T where
T: Sink<Item> + ?Sized, [src]
impl<T, Item> SinkExt<Item> for T where
T: Sink<Item> + ?Sized, [src]fn with<U, Fut, F, E>(self, f: F) -> With<Self, Item, U, Fut, F> where
E: From<Self::Error>,
F: FnMut(U) -> Fut,
Fut: Future<Output = Result<Item, E>>, [src]
fn with<U, Fut, F, E>(self, f: F) -> With<Self, Item, U, Fut, F> where
E: From<Self::Error>,
F: FnMut(U) -> Fut,
Fut: Future<Output = Result<Item, E>>, [src]Composes a function in front of the sink. Read more
fn with_flat_map<U, St, F>(self, f: F) -> WithFlatMap<Self, Item, U, St, F> where
F: FnMut(U) -> St,
St: Stream<Item = Result<Item, Self::Error>>, [src]
fn with_flat_map<U, St, F>(self, f: F) -> WithFlatMap<Self, Item, U, St, F> where
F: FnMut(U) -> St,
St: Stream<Item = Result<Item, Self::Error>>, [src]Composes a function in front of the sink. Read more
fn sink_map_err<E, F>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::Error) -> E, [src]
fn sink_map_err<E, F>(self, f: F) -> SinkMapErr<Self, F> where
F: FnOnce(Self::Error) -> E, [src]Transforms the error returned by the sink.
fn sink_err_into<E>(self) -> SinkErrInto<Self, Item, E> where
Self::Error: Into<E>, [src]
fn sink_err_into<E>(self) -> SinkErrInto<Self, Item, E> where
Self::Error: Into<E>, [src]Map this sink’s error to a different error type using the Into trait. Read more
fn buffer(self, capacity: usize) -> Buffer<Self, Item>[src]
fn buffer(self, capacity: usize) -> Buffer<Self, Item>[src]Adds a fixed-size buffer to the current sink. Read more
fn fanout<Si>(self, other: Si) -> Fanout<Self, Si> where
Item: Clone,
Si: Sink<Item, Error = Self::Error>, [src]
fn fanout<Si>(self, other: Si) -> Fanout<Self, Si> where
Item: Clone,
Si: Sink<Item, Error = Self::Error>, [src]Fanout items to multiple sinks. Read more
fn flush(&mut self) -> Flush<'_, Self, Item>ⓘ where
Self: Unpin, [src]
fn flush(&mut self) -> Flush<'_, Self, Item>ⓘ where
Self: Unpin, [src]Flush the sink, processing all pending items. Read more
fn send(&mut self, item: Item) -> Send<'_, Self, Item>ⓘ where
Self: Unpin, [src]
fn send(&mut self, item: Item) -> Send<'_, Self, Item>ⓘ where
Self: Unpin, [src]A future that completes after the given item has been fully processed into the sink, including flushing. Read more
fn feed(&mut self, item: Item) -> Feed<'_, Self, Item>ⓘ where
Self: Unpin, [src]
fn feed(&mut self, item: Item) -> Feed<'_, Self, Item>ⓘ where
Self: Unpin, [src]A future that completes after the given item has been received by the sink. Read more
fn send_all<St>(&'a mut self, stream: &'a mut St) -> SendAll<'a, Self, St>ⓘ where
Self: Unpin,
St: TryStream<Ok = Item, Error = Self::Error> + Stream + Unpin + ?Sized, [src]
fn send_all<St>(&'a mut self, stream: &'a mut St) -> SendAll<'a, Self, St>ⓘ where
Self: Unpin,
St: TryStream<Ok = Item, Error = Self::Error> + Stream + Unpin + ?Sized, [src]A future that completes after the given stream has been fully processed into the sink, including flushing. Read more
fn left_sink<Si2>(self) -> Either<Self, Si2>ⓘ where
Si2: Sink<Item, Error = Self::Error>, [src]
fn left_sink<Si2>(self) -> Either<Self, Si2>ⓘ where
Si2: Sink<Item, Error = Self::Error>, [src]Wrap this sink in an Either sink, making it the left-hand variant
of that Either. Read more
fn right_sink<Si1>(self) -> Either<Si1, Self>ⓘ where
Si1: Sink<Item, Error = Self::Error>, [src]
fn right_sink<Si1>(self) -> Either<Si1, Self>ⓘ where
Si1: Sink<Item, Error = Self::Error>, [src]Wrap this stream in an Either stream, making it the right-hand variant
of that Either. Read more
fn compat(self) -> CompatSink<Self, Item> where
Self: Unpin, [src]
fn compat(self) -> CompatSink<Self, Item> where
Self: Unpin, [src]fn poll_ready_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>> where
Self: Unpin, [src]
fn poll_ready_unpin(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>> where
Self: Unpin, [src]A convenience method for calling Sink::poll_ready on Unpin
sink types. Read more
fn start_send_unpin(&mut self, item: Item) -> Result<(), Self::Error> where
Self: Unpin, [src]
fn start_send_unpin(&mut self, item: Item) -> Result<(), Self::Error> where
Self: Unpin, [src]A convenience method for calling Sink::start_send on Unpin
sink types. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more