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