Open
Description
Is your feature request related to a problem? Please describe.
Reduce boilerplate, like the actix-web and the std lib too. Currently it needs:
let addr = SocketAddr::from(("127.0.0.1", 8080));
Server::bind(&addr)
Describe the solution you'd like
pub fn bind<A: ToSocketAddrs>(addr: A) -> Builder<AddrIncoming> { /* ... */ }
// Will allow:
Server::bind(("127.0.0.1", 8080))