[−][src]Struct fuse::protocol::open::OpenResponseFlags
Optional flags set on OpenResponse.
Fields (Non-exhaustive)
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.direct_io: boolUse page-based direct I/O on this file.
keep_cache: boolAllow the kernel to preserve cached file data from the last time this file was opened.
nonseekable: boolTell the kernel this file is not seekable.
Implementations
impl OpenResponseFlags[src]
pub fn new() -> OpenResponseFlags[src]
Trait Implementations
impl Clone for OpenResponseFlags[src]
fn clone(&self) -> OpenResponseFlags[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for OpenResponseFlags[src]
impl Debug for OpenResponseFlags[src]
impl Eq for OpenResponseFlags[src]
impl PartialEq<OpenResponseFlags> for OpenResponseFlags[src]
fn eq(&self, other: &OpenResponseFlags) -> bool[src]
fn ne(&self, other: &OpenResponseFlags) -> bool[src]
impl StructuralEq for OpenResponseFlags[src]
impl StructuralPartialEq for OpenResponseFlags[src]
Auto Trait Implementations
impl RefUnwindSafe for OpenResponseFlags
impl Send for OpenResponseFlags
impl Sync for OpenResponseFlags
impl Unpin for OpenResponseFlags
impl UnwindSafe for OpenResponseFlags
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,