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


Rust Ipv6Addr.is_global用法及代碼示例


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

用法

pub fn is_global(&self) -> bool

如果地址似乎是全局可路由的,則返回 true

以下返回 false

  • 環回地址
  • link-local 和唯一的本地單播地址
  • interface-、link-、realm-、admin- 和 site-local 多播地址

例子

#![feature(ip)]

use std::net::Ipv6Addr;

assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_global(), true);
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_global(), false);
assert_eq!(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1).is_global(), true);

相關用法


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