本文简要介绍rust语言中 std::net::IpAddr.to_canonical
的用法。
用法
pub fn to_canonical(&self) -> IpAddr
如果该地址是 IPv4 映射的 IPv6 地址,则将此地址转换为 IpAddr::V4
,否则按原样返回 self
。
例子
#![feature(ip)]
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
assert_eq!(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)).to_canonical().is_loopback(), true);
assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x7f00, 0x1)).is_loopback(), false);
assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x7f00, 0x1)).to_canonical().is_loopback(), true);
相关用法
- Rust IpAddr.is_multicast用法及代码示例
- Rust IpAddr.is_loopback用法及代码示例
- Rust IpAddr.is_global用法及代码示例
- Rust IpAddr.is_ipv6用法及代码示例
- Rust IpAddr.is_ipv4用法及代码示例
- Rust IpAddr.is_unspecified用法及代码示例
- Rust IpAddr.is_documentation用法及代码示例
- Rust IpAddr.is_benchmarking用法及代码示例
- Rust IpAddr用法及代码示例
- Rust Ipv4Addr.is_global用法及代码示例
- Rust Ipv6Addr.is_multicast用法及代码示例
- Rust Ipv4Addr.new用法及代码示例
- Rust Ipv6Addr.is_documentation用法及代码示例
- Rust Ipv6Addr.is_unspecified用法及代码示例
- Rust Ipv6Addr.octets用法及代码示例
- Rust Ipv6Addr.multicast_scope用法及代码示例
- Rust Ipv4Addr.is_link_local用法及代码示例
- Rust Ipv6Addr.is_unicast_link_local用法及代码示例
- Rust Ipv6Addr.to_ipv4用法及代码示例
- Rust Ipv4Addr.is_loopback用法及代码示例
- Rust Ipv6Addr.to_canonical用法及代码示例
- Rust Ipv6Addr.is_unique_local用法及代码示例
- Rust Ipv6Addr.is_benchmarking用法及代码示例
- Rust Ipv4Addr.is_private用法及代码示例
- Rust Ipv6Addr.is_loopback用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::net::IpAddr.to_canonical。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。