Struct cdp::security::InsecureContentStatus
[−]
[src]
pub struct InsecureContentStatus {
pub ran_mixed_content: bool,
pub displayed_mixed_content: bool,
pub contained_mixed_form: bool,
pub ran_content_with_cert_errors: bool,
pub displayed_content_with_cert_errors: bool,
pub ran_insecure_content_style: SecurityState,
pub displayed_insecure_content_style: SecurityState,
}[Experimental] Information about insecure content on the page.
Fields
ran_mixed_content: bool
True if the page was loaded over HTTPS and ran mixed (HTTP) content such as scripts.
displayed_mixed_content: bool
True if the page was loaded over HTTPS and displayed mixed (HTTP) content such as images.
contained_mixed_form: bool
True if the page was loaded over HTTPS and contained a form targeting an insecure url.
ran_content_with_cert_errors: bool
True if the page was loaded over HTTPS without certificate errors, and ran content such as scripts that were loaded with certificate errors.
displayed_content_with_cert_errors: bool
True if the page was loaded over HTTPS without certificate errors, and displayed content such as images that were loaded with certificate errors.
ran_insecure_content_style: SecurityState
Security state representing a page that ran insecure content.
displayed_insecure_content_style: SecurityState
Security state representing a page that displayed insecure content.
Trait Implementations
impl Clone for InsecureContentStatus[src]
fn clone(&self) -> InsecureContentStatus[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for InsecureContentStatus[src]
impl PartialEq for InsecureContentStatus[src]
fn eq(&self, __arg_0: &InsecureContentStatus) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &InsecureContentStatus) -> bool[src]
This method tests for !=.