本文简要介绍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 Ipv6Addr.is_unicast_link_local用法及代码示例
- Rust Ipv6Addr.is_unicast用法及代码示例
- Rust Ipv6Addr.is_unique_local用法及代码示例
- Rust Ipv6Addr.is_unspecified用法及代码示例
- Rust Ipv6Addr.is_multicast用法及代码示例
- Rust Ipv6Addr.is_documentation用法及代码示例
- Rust Ipv6Addr.is_benchmarking用法及代码示例
- Rust Ipv6Addr.is_loopback用法及代码示例
- Rust Ipv6Addr.is_global用法及代码示例
- Rust Ipv6Addr.octets用法及代码示例
- Rust Ipv6Addr.multicast_scope用法及代码示例
- Rust Ipv6Addr.to_ipv4用法及代码示例
- Rust Ipv6Addr.to_canonical用法及代码示例
- Rust Ipv6Addr.new用法及代码示例
- Rust Ipv6Addr.to_ipv4_mapped用法及代码示例
- Rust Ipv6Addr.segments用法及代码示例
- Rust Ipv6Addr用法及代码示例
- Rust Ipv6MulticastScope用法及代码示例
- Rust Ipv4Addr.is_global用法及代码示例
- Rust Ipv4Addr.new用法及代码示例
- Rust Ipv4Addr.is_link_local用法及代码示例
- Rust Ipv4Addr.is_loopback用法及代码示例
- Rust Ipv4Addr.is_private用法及代码示例
- Rust Ipv4Addr用法及代码示例
- Rust Ipv4Addr.to_ipv6_compatible用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::Ipv6Addr.is_unicast_global。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。