Skip to content

Commit 10bdd80

Browse files
committed
Auto merge of #32050 - achanda:from-slice-v4, r=alexcrichton
Add an impl for From trait Converts a u8 slice to a Ipv4Addr More discussion on this here: rust-lang/rfcs#1498 (comment)
2 parents 02954ae + ee18d8e commit 10bdd80

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/libstd/net/ip.rs

+12
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,13 @@ impl From<u32> for Ipv4Addr {
279279
}
280280
}
281281

282+
#[stable(feature = "from_slice_v4", since = "1.9.0")]
283+
impl From<[u8; 4]> for Ipv4Addr {
284+
fn from(octets: [u8; 4]) -> Ipv4Addr {
285+
Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3])
286+
}
287+
}
288+
282289
impl Ipv6Addr {
283290
/// Creates a new IPv6 address from eight 16-bit segments.
284291
///
@@ -831,6 +838,11 @@ mod tests {
831838
assert_eq!(Ipv4Addr::from(2130706433), a);
832839
}
833840

841+
#[test]
842+
fn ipv4_from_u32_slice() {
843+
assert_eq!(Ipv4Addr::from([127, 0, 0, 1]), Ipv4Addr::new(127, 0, 0, 1))
844+
}
845+
834846
#[test]
835847
fn ord() {
836848
assert!(Ipv4Addr::new(100, 64, 3, 3) < Ipv4Addr::new(192, 0, 2, 2));

0 commit comments

Comments
 (0)