Hi All,
I have some interest in Rust, and i want to build something to learn it.
What i want to create is a TCP/UDP server.
I can do this easily using goroutine in Go or coroutine in gevent (Python).
My questions:
- Is there any similar features in Rust? I googled it for a while, but do not found anything interesting.
I found this green::coroutine::Coroutine - Rust,
but it has very small info. - Any better way in Rust?
I have experience in event driven programming in C using libev and epoll.
And i really didn't like it.
Regards,
Bolang