Library/Struct/Summary/Difference.rs
1/// Represents a structure containing omit patterns.
2///
3/// This struct holds a vector of strings representing patterns to omit.
4///
5/// # Fields
6///
7/// * `Omit` - A vector of strings representing patterns to omit.
8///
9/// # Example
10///
11/// ```rust
12/// let omit_patterns = Struct {
13/// Omit: vec!["pattern1".to_string(), "pattern2".to_string()],
14/// };
15/// ```
16pub struct Struct {
17 /// A vector of strings representing patterns to omit.
18 pub Omit: Vec<String>,
19}