本文简要介绍rust语言中 Struct std::net::Ipv4Addr
的用法。
用法
pub struct Ipv4Addr { /* fields omitted */ }
IPv4 地址。
IPv4 地址在 IETF RFC 791 中定义为 32 位整数。它们通常表示为四个八位位组。
有关包含 IPv4 和 IPv6 地址的类型,请参阅 IpAddr
。
Ipv4Addr
结构的大小可能因目标操作系统而异。
文本表示
Ipv4Addr
提供 FromStr
实现。四个八位位组采用十进制表示法,除以.
(这称为“dot-decimal 表示法”)。值得注意的是,每个 IETF RFC 6943 不允许使用八进制数(用前导 0
指示)和十六进制数(用前导 0x
指示)。
例子
use std::net::Ipv4Addr;
let localhost = Ipv4Addr::new(127, 0, 0, 1);
assert_eq!("127.0.0.1".parse(), Ok(localhost));
assert_eq!(localhost.is_loopback(), true);
assert!("012.004.002.000".parse::<Ipv4Addr>().is_err()); // all octets are in octal
assert!("0000000.0.0.0".parse::<Ipv4Addr>().is_err()); // first octet is a zero in octal
assert!("0xcb.0x0.0x71.0x00".parse::<Ipv4Addr>().is_err()); // all octets are in hex
相关用法
- Rust Ipv4Addr.is_global用法及代码示例
- Rust Ipv4Addr.new用法及代码示例
- Rust Ipv4Addr.is_link_local用法及代码示例
- Rust Ipv4Addr.is_loopback用法及代码示例
- Rust Ipv4Addr.is_private用法及代码示例
- Rust Ipv4Addr.to_ipv6_compatible用法及代码示例
- Rust Ipv4Addr.is_reserved用法及代码示例
- Rust Ipv4Addr.is_broadcast用法及代码示例
- Rust Ipv4Addr.is_benchmarking用法及代码示例
- Rust Ipv4Addr.to_ipv6_mapped用法及代码示例
- Rust Ipv4Addr.octets用法及代码示例
- Rust Ipv4Addr.is_multicast用法及代码示例
- Rust Ipv4Addr.is_documentation用法及代码示例
- Rust Ipv4Addr.is_shared用法及代码示例
- Rust Ipv4Addr.is_unspecified用法及代码示例
- 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大神的英文原创作品 Struct std::net::Ipv4Addr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。