本文简要介绍rust语言中 std::net::Ipv4Addr.is_reserved
的用法。
用法
pub fn is_reserved(&self) -> bool
如果 IANA 保留该地址以供将来使用,则返回 true
。 IETF RFC 1112 将保留地址块定义为 240.0.0.0/4
。此范围通常包括广播地址 255.255.255.255
,但此实现明确排除它,因为它显然不保留供将来使用。
警告
随着 IANA 分配新地址,此方法将被更新。这可能会导致在依赖此方法的过时版本的代码中将非保留地址视为保留地址。
例子
#![feature(ip)]
use std::net::Ipv4Addr;
assert_eq!(Ipv4Addr::new(240, 0, 0, 0).is_reserved(), true);
assert_eq!(Ipv4Addr::new(255, 255, 255, 254).is_reserved(), true);
assert_eq!(Ipv4Addr::new(239, 255, 255, 255).is_reserved(), false);
// The broadcast address is not considered as reserved for future use by this implementation
assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_reserved(), false);
相关用法
- Rust Ipv4Addr.is_global用法及代码示例
- Rust Ipv4Addr.is_link_local用法及代码示例
- Rust Ipv4Addr.is_loopback用法及代码示例
- Rust Ipv4Addr.is_private用法及代码示例
- Rust Ipv4Addr.is_broadcast用法及代码示例
- Rust Ipv4Addr.is_benchmarking用法及代码示例
- Rust Ipv4Addr.is_multicast用法及代码示例
- Rust Ipv4Addr.is_documentation用法及代码示例
- 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_reserved。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。