1
2
3
4
5
6
7
use crate::{NetAddr, Netv6Addr};

impl From<Netv6Addr> for NetAddr {
	fn from(netaddr: Netv6Addr) -> Self {
		Self::V6(netaddr)
	}
}