Struct Sender
struct Sender<T> { ... }
The sending-half of Rust's asynchronous channel type.
Messages can be sent through this channel with send.
Note: all senders (the original and its clones) need to be dropped for the receiver
to stop blocking to receive messages with Receiver::recv.
Examples
use channel;
use thread;
let = channel;
let sender2 = sender.clone;
// First thread owns sender
spawn;
// Second thread owns sender2
spawn;
let msg = receiver.recv.unwrap;
let msg2 = receiver.recv.unwrap;
assert_eq!;
Implementations
impl<T> Sender<T>
fn send(self: &Self, t: T) -> Result<(), SendError<T>>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
Errmeans that the data will never be received, but a return value ofOkdoes not mean that the data will be received. It is possible for the corresponding receiver to hang up immediately after this function returnsOk.This method will never block the current thread.
Examples
use channel; let = channel; // This send is always successful tx.send.unwrap; // This send will fail because the receiver is gone drop; assert_eq!;
impl<T> Any for Sender<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Sender<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Sender<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Clone for Sender<T>
fn clone(self: &Self) -> Sender<T>Clone a sender to send to other threads.
Note, be aware of the lifetime of the sender because all senders (including the original) need to be dropped in order for
Receiver::recvto stop blocking.
impl<T> CloneToUninit for Sender<T>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> Debug for Sender<T>
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl<T> Freeze for Sender<T>
impl<T> From for Sender<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> RefUnwindSafe for Sender<T>
impl<T> ToOwned for Sender<T>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T> Unpin for Sender<T>
impl<T> UnwindSafe for Sender<T>
impl<T, U> Into for Sender<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Sender<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Sender<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>