Rust is an excellent language and fully capable of production use.
let f = std::fs::File::open("/dev/null").unwrap(); let f: std::os::fd::OwnedFd = f.into(); let socket: std::net::UdpSocket = f.into();
Rust is an excellent language and fully capable of production use.