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


Rust Ipv6Addr.is_unicast用法及代碼示例


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

用法

pub fn is_unicast(&self) -> bool

如果這是單播地址(如 IETF RFC 4291 所定義),則返回 true 。任何不是 multicast address ( ff00::/8 ) 的地址都是單播的。

例子

#![feature(ip)]

use std::net::Ipv6Addr;

// The unspecified and loopback addresses are unicast.
assert_eq!(Ipv6Addr::UNSPECIFIED.is_unicast(), true);
assert_eq!(Ipv6Addr::LOCALHOST.is_unicast(), true);

// Any address that is not a multicast address (`ff00::/8`) is unicast.
assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast(), true);
assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).is_unicast(), false);

相關用法


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