7 lines
118 B
Rust
7 lines
118 B
Rust
use std::collections::HashSet;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct RuleFill {
|
|
pub no_use_rule: HashSet<String>,
|
|
}
|