Sha256: cf6d9a9291f81a810a2da0dad3a2a4f596210916cea149a9c38d3f44ca16b32c
Contents?: true
Size: 248 Bytes
Versions: 38
Compression:
Stored size: 248 Bytes
Contents
use crate::fs::remove_dir_all_impl; use std::path::Path; use std::{fs, io}; /// Removes a directory and all of its contents. #[inline] pub fn remove_dir_all(start: &fs::File, path: &Path) -> io::Result<()> { remove_dir_all_impl(start, path) }
Version data entries
38 entries across 38 versions & 1 rubygems