Trait std::os::unix::OpenOptionsExtUnstable [-] [+] [src]

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

Required Methods

fn mode(&mut self, mode: i32) -> &mut Self

Set the mode bits that a new file will be created with.

If a new file is created as part of a File::open_opts call then this specified mode will be used as the permission bits for the new file.

Implementors