pub trait PolicyDecisionExt: IsA<PolicyDecision> + Sealed + 'static {
    // Provided methods
    fn download(&self) { ... }
    fn ignore(&self) { ... }
    fn use_(&self) { ... }
    fn use_with_policies(&self, policies: &impl IsA<WebsitePolicies>) { ... }
}

Provided Methods§

source

fn download(&self)

source

fn ignore(&self)

source

fn use_(&self)

source

fn use_with_policies(&self, policies: &impl IsA<WebsitePolicies>)

Available on crate feature v2_30 only.

Object Safety§

This trait is not object safe.

Implementors§