blob: cef0932416bcbfb034641d689ceeef94f2fe3109 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/// 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,
}
|