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


Rust Ipv6Addr.is_unicast_global用法及代碼示例


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

用法

pub fn is_unicast_global(&self) -> bool

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

以下返回錯誤:

  • 環回地址
  • link-local 地址
  • 唯一的本地地址
  • 未指定的地址
  • 為文檔保留的地址範圍

此方法根據 RFC 4291 section 2.5.7 返回 site-local 地址的 true

The special behavior of [the site-local unicast] prefix defined in [RFC3513] must no longer
be supported in new implementations (i.e., new implementations must treat this prefix as
Global Unicast).

例子

#![feature(ip)]

use std::net::Ipv6Addr;

assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast_global(), false);
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_global(), true);

相關用法


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