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

True if the page was loaded over HTTPS and ran mixed (HTTP) content such as scripts.

True if the page was loaded over HTTPS and displayed mixed (HTTP) content such as images.

True if the page was loaded over HTTPS and contained a form targeting an insecure url.

True if the page was loaded over HTTPS without certificate errors, and ran content such as scripts that were loaded with certificate errors.

True if the page was loaded over HTTPS without certificate errors, and displayed content such as images that were loaded with certificate errors.

Security state representing a page that ran insecure content.

Security state representing a page that displayed insecure content.

Trait Implementations

impl Clone for InsecureContentStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InsecureContentStatus
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for InsecureContentStatus
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.