Struct cdp::security::SecurityStateChangedEvent [] [src]

pub struct SecurityStateChangedEvent<'a> {
    pub security_state: SecurityState,
    pub scheme_is_cryptographic: bool,
    pub explanations: Vec<SecurityStateExplanation<'a>>,
    pub insecure_content_status: InsecureContentStatus,
    pub summary: Option<Cow<'a, str>>,
}

[Experimental] The security state of the page changed.

Event Security.securityStateChanged

Domain Module: cdp::security
Event Struct: cdp::security::SecurityStateChangedEvent

Fields

Security state.

True if the page was loaded over cryptographic transport such as HTTPS.

List of explanations for the security state. If the overall security state is insecure or warning, at least one corresponding explanation should be included.

Information about insecure content on the page.

Overrides user-visible description of the state.

Trait Implementations

impl<'a> Clone for SecurityStateChangedEvent<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for SecurityStateChangedEvent<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for SecurityStateChangedEvent<'a>
[src]

[src]

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

[src]

This method tests for !=.

impl<'a> CdpEvent for SecurityStateChangedEvent<'a>
[src]

EVENT_NAME: &'static str = "Security.securityStateChanged"

impl<'a> SerializeCdpEvent for SecurityStateChangedEvent<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpEvent<'de> for SecurityStateChangedEvent<'a>
[src]

[src]