本文简要介绍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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。