A trait for the `is_read_write` function.
| 14 | |
| 15 | /// A trait for the `is_read_write` function. |
| 16 | pub trait IsReadWrite { |
| 17 | /// Test whether the handle is readable and/or writable. |
| 18 | fn is_read_write(&self) -> io::Result<(bool, bool)>; |
| 19 | } |
| 20 | |
| 21 | #[cfg(not(windows))] |
| 22 | impl<T: AsFilelike> IsReadWrite for T { |
nothing calls this directly
no outgoing calls
no test coverage detected