本文简要介绍rust语言中 std::net::Ipv4Addr.is_documentation
的用法。
用法
pub const fn is_documentation(&self) -> bool
如果此地址在为文档指定的范围内,则返回 true
。
这是在 IETF RFC 5737 中定义的:
192.0.2.0/24
(TEST-NET-1)198.51.100.0/24
(TEST-NET-2)203.0.113.0/24
(TEST-NET-3)
例子
use std::net::Ipv4Addr;
assert_eq!(Ipv4Addr::new(192, 0, 2, 255).is_documentation(), true);
assert_eq!(Ipv4Addr::new(198, 51, 100, 65).is_documentation(), true);
assert_eq!(Ipv4Addr::new(203, 0, 113, 6).is_documentation(), true);
assert_eq!(Ipv4Addr::new(193, 34, 17, 19).is_documentation(), false);
相关用法
- Rust Ipv4Addr.is_global用法及代码示例
- Rust Ipv4Addr.is_link_local用法及代码示例
- Rust Ipv4Addr.is_loopback用法及代码示例
- Rust Ipv4Addr.is_private用法及代码示例
- Rust Ipv4Addr.is_reserved用法及代码示例
- Rust Ipv4Addr.is_broadcast用法及代码示例
- Rust Ipv4Addr.is_benchmarking用法及代码示例
- Rust Ipv4Addr.is_multicast用法及代码示例
- Rust Ipv4Addr.is_shared用法及代码示例
- Rust Ipv4Addr.is_unspecified用法及代码示例
- Rust Ipv4Addr.new用法及代码示例
- Rust Ipv4Addr.to_ipv6_compatible用法及代码示例
- Rust Ipv4Addr.to_ipv6_mapped用法及代码示例
- Rust Ipv4Addr.octets用法及代码示例
- Rust Ipv4Addr用法及代码示例
- Rust Ipv6Addr.is_multicast用法及代码示例
- Rust Ipv6Addr.is_documentation用法及代码示例
- Rust Ipv6Addr.is_unspecified用法及代码示例
- Rust Ipv6Addr.octets用法及代码示例
- Rust Ipv6Addr.multicast_scope用法及代码示例
- Rust Ipv6Addr.is_unicast_link_local用法及代码示例
- Rust Ipv6Addr.to_ipv4用法及代码示例
- Rust Ipv6Addr.to_canonical用法及代码示例
- Rust Ipv6Addr.is_unique_local用法及代码示例
- Rust Ipv6Addr.is_benchmarking用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::Ipv4Addr.is_documentation。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。