adguard-flm 2.6.0

This crate represents a library for managing AdGuard filter lists
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Represents list of active (not disabled) rules with extra filter data
use crate::FilterId;

/// Represents list of active (not disabled) rules with extra filter data as string
pub struct ActiveRulesInfoRaw {
    /// Filter id for these rules
    pub filter_id: FilterId,
    /// Group id of the filter
    pub group_id: i32,
    /// Is this filter trusted?
    pub is_trusted: bool,
    /// List of active rules as string separated by \n.
    /// There rules is the difference between all rules of filter and disabled rules of filter
    pub rules: String,
}