Expand description
Cross-platform wrapper over select.
This library provides simple interface over POSIX’s select
enabling you to write
very simple async programs using std
networking primitives.
But if you want performance you should look for tokio
or mio
Structs§
- Select
Result - Represents successful select call.
- Selector
- Select abstraction allowing you to monitor specified sockets.
Constants§
- FD_
LIMIT - Limit on file descriptors in select’s set
Traits§
- AsRawFd
- Interface to extract acceptable file descriptor for use with
Selector