logo
pub trait DirBuilderExt {
    fn mode(&mut self, mode: u32) -> &mut Self;
}
Available on Unix only.
Expand description

Unix-specific extensions to DirBuilder.

Required Methods

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

Implementors