W3cubDocs

/Rust

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

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

An extension trait for fs::DirBuilder for unix-specific options.

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