Skip to main content

std/net/
ip_addr.rs

1// Tests for this module
2#[cfg(all(
3    test,
4    not(any(
5        target_os = "emscripten",
6        all(target_os = "wasi", target_env = "p1"),
7        target_os = "l4re"
8    ))
9))]
10mod tests;
11
12#[stable(feature = "ip_addr", since = "1.7.0")]
13pub use core::net::IpAddr;
14#[unstable(feature = "ip", issue = "27709")]
15pub use core::net::Ipv6MulticastScope;
16#[stable(feature = "rust1", since = "1.0.0")]
17pub use core::net::{Ipv4Addr, Ipv6Addr};