Trait std::os::unix::fs::DirBuilderExt

pub trait DirBuilderExt {
    fn mode(&mut self, mode: u32) -> &mut Self;
}
This is supported on Unix only.

Unix-specific extensions to fs::DirBuilder.

Required methods

Sets the mode to create new directories with. This option defaults to 0o777.

Examples

use std::fs::DirBuilder;
use std::os::unix::fs::DirBuilderExt;

let mut builder = DirBuilder::new();
builder.mode(0o755);

Implementors

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/fs/trait.DirBuilderExt.html