adguard-flm 2.6.2

This crate represents a library for managing AdGuard filter lists
Documentation
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,
}