pub trait PolicyDecisionExt: IsA<PolicyDecision> + 'static {
// Provided methods
fn download(&self) { ... }
fn ignore(&self) { ... }
fn use_(&self) { ... }
fn use_with_policies(&self, policies: &WebsitePolicies) { ... }
}Provided Methods§
fn download(&self)
fn ignore(&self)
fn use_(&self)
fn use_with_policies(&self, policies: &WebsitePolicies)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".