A alias for 'static + Unpin + Send + Read + Write
| 6 | |
| 7 | /// A alias for 'static + Unpin + Send + Read + Write |
| 8 | pub trait AsyncReadWriter: 'static + Unpin + Send + Read + Write {} |
| 9 | |
| 10 | impl<T> AsyncReadWriter for T where T: 'static + Unpin + Send + Read + Write {} |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected