本文簡要介紹rust語言中 std::sync::mpsc::Sender.send
的用法。
用法
pub fn send(&self, t: T) -> Result<(), SendError<T>>
嘗試在此通道上發送一個值,如果無法發送則將其返回。
當確定通道的另一端尚未掛斷時,發送成功。不成功的發送是指相應的接收者已被釋放。請注意,返回值為Err
表示永遠不會收到數據,但返回值為Ok
做不是表示將收到數據。該函數返回後,有可能對應的接收者立即掛斷Ok
.
此方法永遠不會阻塞當前線程。
例子
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);
相關用法
- Rust Sender用法及代碼示例
- Rust Seek.stream_len用法及代碼示例
- Rust Seek.rewind用法及代碼示例
- Rust Seek.stream_position用法及代碼示例
- Rust Seek用法及代碼示例
- Rust String.try_reserve用法及代碼示例
- Rust Saturating.reverse_bits用法及代碼示例
- Rust SyncSender.send用法及代碼示例
- Rust SplitNMut用法及代碼示例
- Rust SocketAddrV6.ip用法及代碼示例
- Rust Shl.shl用法及代碼示例
- Rust SubAssign.sub_assign用法及代碼示例
- Rust SyncOnceCell用法及代碼示例
- Rust Split.as_str用法及代碼示例
- Rust String.insert_str用法及代碼示例
- Rust String.into_raw_parts用法及代碼示例
- Rust SocketAddr.port用法及代碼示例
- Rust SocketAncillary.add_fds用法及代碼示例
- Rust SocketAddr.as_abstract_namespace用法及代碼示例
- Rust SocketAddr.as_pathname用法及代碼示例
- Rust Stdio.piped用法及代碼示例
- Rust SocketAncillary.clear用法及代碼示例
- Rust String.extend_from_within用法及代碼示例
- Rust SyncLazy用法及代碼示例
- Rust Shr.shr用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::sync::mpsc::Sender.send。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。