bitcode
bitcode copied to clipboard
Add support for `std::net::{IpAddr, Ipv4Addr, Ipv6Addr}`
Works by converting them to/from Result<Ipv4Addr, Ipv6Addr>, [u8; 4], and [u8; 16], which are already supported. This is to avoid additional unsafe code. Manual re-implementation might yield better performance.