Trait IsReadWrite
Other items insystem_interface::io
pub trait IsReadWrite { fn is_read_write(&self) -> Result<(bool, bool)>; }
A trait for the is_read_write function.
is_read_write
fn is_read_write(&self) -> Result<(bool, bool)>
Test whether the handle is readable and/or writable.
impl<T: AsFilelike> IsReadWrite for T