本文簡要介紹rust語言中 std::net::Ipv6Addr.is_loopback
的用法。
用法
pub const fn is_loopback(&self) -> bool
如果這是 loopback address ( ::1
)(如 IETF RFC 4291 section 2.5.3 中所定義),則返回 true
。
與 IPv4 不同,在 IPv6 中隻有一個環回地址。
例子
use std::net::Ipv6Addr;
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_loopback(), false);
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_loopback(), true);
相關用法
- Rust Ipv6Addr.is_multicast用法及代碼示例
- Rust Ipv6Addr.is_documentation用法及代碼示例
- Rust Ipv6Addr.is_unspecified用法及代碼示例
- Rust Ipv6Addr.is_unicast_link_local用法及代碼示例
- Rust Ipv6Addr.is_unique_local用法及代碼示例
- Rust Ipv6Addr.is_benchmarking用法及代碼示例
- Rust Ipv6Addr.is_unicast_global用法及代碼示例
- Rust Ipv6Addr.is_global用法及代碼示例
- Rust Ipv6Addr.is_unicast用法及代碼示例
- 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_loopback。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。