pub trait IOStream:
AsyncRead
+ AsyncWrite
+ Unpin { }Expand description
General trait which implementing type represents something where we can both write to or read from
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".