/// A flag indicating whether to overwrite existing resources. /// /// This struct encapsulates a boolean value that indicates whether to overwrite /// existing files or data during resource processing. #[derive(Debug, Default, Clone)] pub struct ResOverwrite { /// Boolean flag, `true` means overwrite is allowed, `false` means it is not. pub overwrite: bool, }