pub struct Sender<T> { /* fields omitted */ }
The sending-half of Rust's asynchronous channel
type. This half can only be owned by one thread, but it can be cloned to send to other threads.
Messages can be sent through this channel with send
.
use std::sync::mpsc::channel; use std::thread; let (sender, receiver) = channel(); let sender2 = sender.clone(); // First thread owns sender thread::spawn(move || { sender.send(1).unwrap(); }); // Second thread owns sender2 thread::spawn(move || { sender2.send(2).unwrap(); }); let msg = receiver.recv().unwrap(); let msg2 = receiver.recv().unwrap(); assert_eq!(3, msg + msg2);
impl<T> Sender<T>
[src]
pub fn send(&self, t: T) -> Result<(), SendError<T>>
[src]
Attempts to send a value on this channel, returning it back if it could not be sent.
A successful send occurs when it is determined that the other end of the channel has not hung up already. An unsuccessful send would be one where the corresponding receiver has already been deallocated. Note that a return value of Err
means that the data will never be received, but a return value of Ok
does not mean that the data will be received. It is possible for the corresponding receiver to hang up immediately after this function returns Ok
.
This method will never block the current thread.
use std::sync::mpsc::channel; let (tx, rx) = channel(); // This send is always successful tx.send(1).unwrap(); // This send will fail because the receiver is gone drop(rx); assert_eq!(tx.send(1).unwrap_err().0, 1);
impl<T> Clone for Sender<T>
[src]
impl<T> Debug for Sender<T>
[src]1.8.0
impl<T> Drop for Sender<T>
[src]
impl<T: Send> Send for Sender<T>
[src]
impl<T> !Sync for Sender<T>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
fn borrow(&self) -> &TⓘNotable traits for &'_ mut F
impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized,
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized,
type Item = <I as Iterator>::Item;
impl<R: Read + ?Sized, '_> Read for &'_ mut R
impl<W: Write + ?Sized, '_> Write for &'_ mut W
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut F
impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized,
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized,
type Item = <I as Iterator>::Item;
impl<R: Read + ?Sized, '_> Read for &'_ mut R
impl<W: Write + ?Sized, '_> Write for &'_ mut W
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/sync/mpsc/struct.Sender.html