We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1f933 commit d8031bfCopy full SHA for d8031bf
src/abi/fuse_abi.rs
@@ -99,10 +99,15 @@ bitflags! {
99
/// Options controlling the behavior of files opened by the server in response
100
/// to an open or create request.
101
pub struct OpenOptions: u32 {
102
+ /// Bypass page cache for this open file.
103
const DIRECT_IO = FOPEN_DIRECT_IO;
104
+ /// Don't invalidate the data cache on open.
105
const KEEP_CACHE = FOPEN_KEEP_CACHE;
106
+ /// The file is not seekable.
107
const NONSEEKABLE = FOPEN_NONSEEKABLE;
108
+ /// allow caching this directory
109
const CACHE_DIR = FOPEN_CACHE_DIR;
110
+ /// the file is stream-like (no file position at all)
111
const STREAM = FOPEN_STREAM;
112
}
113
0 commit comments