pub trait FsCreateDir: BaseFsCreateDir {
// Provided method
fn fs_create_dir(
&self,
path: impl AsRef<Path>,
options: &CreateDirOptions,
) -> Result<()> { ... }
}Provided Methods§
fn fs_create_dir( &self, path: impl AsRef<Path>, options: &CreateDirOptions, ) -> Result<()>
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.