當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Sender.send用法及代碼示例


本文簡要介紹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-lang.org大神的英文原創作品 std::sync::mpsc::Sender.send。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。