当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust UdpSocket.send用法及代码示例


本文简要介绍rust语言中 std::net::UdpSocket.send 的用法。

用法

pub fn send(&self, buf: &[u8]) -> Result<usize>

将套接字上的数据发送到它所连接的远程地址。

UdpSocket::connect 将此套接字连接到远程地址。如果套接字未连接,此方法将失败。

例子

use std::net::UdpSocket;

let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address");
socket.connect("127.0.0.1:8080").expect("connect function failed");
socket.send(&[0, 1, 2]).expect("couldn't send message");

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::UdpSocket.send。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。