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


Rust SocketAddrV6.set_scope_id用法及代碼示例


本文簡要介紹rust語言中 std::net::SocketAddrV6.set_scope_id 的用法。

用法

pub fn set_scope_id(&mut self, new_scope_id: u32)

更改與此套接字地址關聯的範圍 ID。

有關詳細信息,請參閱 SocketAddrV6::scope_id 的文檔。

例子

use std::net::{SocketAddrV6, Ipv6Addr};

let mut socket = SocketAddrV6::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1), 8080, 0, 78);
socket.set_scope_id(42);
assert_eq!(socket.scope_id(), 42);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::net::SocketAddrV6.set_scope_id。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。