Sha256: 7b98658e87df61777025417c33da5f8c9fb4174e357e0aaa556ec5e701a857f2
Contents?: true
Size: 296 Bytes
Versions: 36
Compression:
Stored size: 296 Bytes
Contents
use crate::fs::is_file_read_write_impl; use std::{fs, io}; /// Return a pair of booleans indicating whether the given file is opened /// for reading and writing, respectively. #[inline] pub fn is_file_read_write(file: &fs::File) -> io::Result<(bool, bool)> { is_file_read_write_impl(file) }
Version data entries
36 entries across 36 versions & 1 rubygems