Skip to content

Commit fae439b

Browse files
committed
Add doc examples for std::net::IpAddr construction.
1 parent b1363a7 commit fae439b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/libstd/net/ip.rs

+18
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,24 @@ use sys::net::netc as c;
2222
use sys_common::{AsInner, FromInner};
2323

2424
/// An IP address, either an IPv4 or IPv6 address.
25+
///
26+
/// # Examples
27+
///
28+
/// Constructing an IPv4 address:
29+
///
30+
/// ```
31+
/// use std::net::{IpAddr, Ipv4Addr};
32+
///
33+
/// IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1));
34+
/// ```
35+
///
36+
/// Constructing an IPv6 address:
37+
///
38+
/// ```
39+
/// use std::net::{IpAddr, Ipv6Addr};
40+
///
41+
/// IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
42+
/// ```
2543
#[stable(feature = "ip_addr", since = "1.7.0")]
2644
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
2745
pub enum IpAddr {

0 commit comments

Comments
 (0)