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


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