file_operation/file/
struct.rs

1/// A wrapper struct for file data in string format.
2///
3/// Provides convenient access to file contents as a string.
4#[derive(Debug, Clone)]
5pub struct FileDataString(
6    /// The actual string content of the file.
7    pub(crate) String,
8);