DirBuilderExt in async_std::os::unix::fs - Rust (original) (raw)
Trait DirBuilderExt
pub trait DirBuilderExt {
// Required method
fn mode(&mut self, mode: u32) -> &mut Self;
}
Expand description
Unix-specific extensions to DirBuilder
.
Required Methods§
fn mode(&mut self, mode: u32) -> &mut Self
Sets the mode to create new directories with. This option defaults to0o777
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.