Files
hayabusa/src/fillter.rs
2021-12-04 19:23:50 +09:00

7 lines
118 B
Rust

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