File wrapper for `axfs::fops::File`.
| 98 | |
| 99 | /// File wrapper for `axfs::fops::File`. |
| 100 | pub struct File { |
| 101 | inner: axfs::File, |
| 102 | nonblock: AtomicBool, |
| 103 | } |
| 104 | |
| 105 | impl File { |
| 106 | pub fn new(inner: axfs::File) -> Self { |
no outgoing calls
no test coverage detected