is it possible in pure rust to write a single-threaded TCP Server? In C I would use the select syscall to "listen" to multiple sockets. I only find solutions where people use unsafe to use epoll/select, but I really want to avoid this. I think this is a basic task and I cant imagine that there is no pure rust solution to solve such a task. Basically I am looking for an abstraction in the standard library.
Here is what I want in C: https://www.gnu.org/software/libc/manual/html_node/Server-Example.html
E.g. using unsafe with select/epoll: https://www.zupzup.org/epoll-with-rust/index.html
I ended up using async/await. In this example is not proper error handling.