1 2 3 4 5 6 7 8 9
use crate::FilterId; /// List of disabled rules separated by line breaks + filter id pub struct DisabledRulesRaw { /// Associated filter id. pub filter_id: FilterId, /// List of only disabled rules as string. pub text: String, }