[][src]Struct adblock::engine::Engine

pub struct Engine {
    pub blocker: Blocker,
}

Fields

blocker: Blocker

Methods

impl Engine[src]

pub fn from_rules(network_filters: &[String]) -> Engine[src]

pub fn from_rules_debug(network_filters: &[String]) -> Engine[src]

pub fn from_rules_parametrised(
    network_filters: &[String],
    debug: bool,
    optimize: bool
) -> Engine
[src]

pub fn serialize(&self) -> Result<Vec<u8>, BlockerError>[src]

pub fn deserialize(&mut self, serialized: &[u8]) -> Result<(), BlockerError>[src]

pub fn check_network_urls(
    &self,
    url: &str,
    source_url: &str,
    request_type: &str
) -> BlockerResult
[src]

pub fn check_network_urls_with_hostnames(
    &self,
    url: &str,
    hostname: &str,
    source_hostname: &str,
    request_type: &str,
    third_party_request: Option<bool>
) -> BlockerResult
[src]

pub fn filter_exists(&self, filter: &str) -> bool[src]

pub fn filter_add<'a>(&'a mut self, filter: &str) -> &'a mut Engine[src]

pub fn with_tags<'a>(&'a mut self, tags: &[&str]) -> &'a mut Engine[src]

pub fn tags_enable<'a>(&'a mut self, tags: &[&str])[src]

pub fn tags_disable<'a>(&'a mut self, tags: &[&str])[src]

pub fn tag_exists(&self, tag: &str) -> bool[src]

pub fn with_resources<'a>(&'a mut self, resources: &'a str) -> &'a mut Engine[src]

pub fn resource_add<'a>(
    &'a mut self,
    key: &str,
    content_type: &str,
    data: &str
) -> &'a mut Engine
[src]

pub fn resource_get(&self, key: &str) -> Option<Resource>[src]

Auto Trait Implementations

impl !Sync for Engine

impl !Send for Engine

impl Unpin for Engine

impl !RefUnwindSafe for Engine

impl !UnwindSafe for Engine

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]