A Rust library providing comprehensive utilities for file operations with both sync/async support. Includes operations for copy, delete, move, read and write files. Simplifies file handling in Rust projects with safe and efficient methods for file manipulation and metadata querying.
/// A wrapper struct for file data in string format.
////// Provides convenient access to file contents as a string.
#[derive(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]pubstructFileDataString(/// The actual string content of the file.
pub(crate)String,
);