Trait fs_err::os::unix::fs::OpenOptionsExt[][src]

pub trait OpenOptionsExt: Sealed {
    fn mode(&mut self, mode: u32) -> &mut Self;
fn custom_flags(&mut self, flags: i32) -> &mut Self; }

Wrapper for std::os::unix::fs::OpenOptionsExt

The std traits might be extended in the future (See issue #49961). This trait is sealed and can not be implemented by other crates.

Required methods

fn mode(&mut self, mode: u32) -> &mut Self[src]

fn custom_flags(&mut self, flags: i32) -> &mut Self[src]

Loading content...

Implementors

impl OpenOptionsExt for OpenOptions[src]

fn mode(&mut self, mode: u32) -> &mut Self[src]

fn custom_flags(&mut self, flags: i32) -> &mut Self[src]

Loading content...