[][src]Struct adblock::resources::Resources

pub struct Resources {
    pub resources: HashMap<String, Resource>,
}

Fields

resources: HashMap<String, Resource>

Methods

impl Resources[src]

pub fn parse(data: &str) -> Resources[src]

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

pub fn add_resource(&mut self, name: String, resource: Resource)[src]

Trait Implementations

impl Default for Resources[src]

impl PartialEq<Resources> for Resources[src]

impl Debug for Resources[src]

impl Serialize for Resources[src]

impl<'de> Deserialize<'de> for Resources[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]