#![allow(dead_code, deprecated, unused_variables, unused_mut)] use std::net::{IpAddr, Ipv4Addr}; fn main() { let addr = Ipv4Addr::new(127, 0, 0, 1); assert_eq!(IpAddr::V4(addr), IpAddr::from(addr)) }