psummary 0.1.5

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