Struct chromiumoxide_cdp::cdp::browser_protocol::audits::MixedContentIssueDetails[][src]

pub struct MixedContentIssueDetails {
    pub resource_type: Option<MixedContentResourceType>,
    pub resolution_status: MixedContentResolutionStatus,
    pub insecure_url: String,
    pub main_resource_url: String,
    pub request: Option<AffectedRequest>,
    pub frame: Option<AffectedFrame>,
}

Fields

resource_type: Option<MixedContentResourceType>

The type of resource causing the mixed content issue (css, js, iframe, form,…). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination

resolution_status: MixedContentResolutionStatus

The way the mixed content issue is being resolved.

insecure_url: String

The unsafe http url causing the mixed content issue.

main_resource_url: String

The url responsible for the call to an unsafe url.

request: Option<AffectedRequest>

The mixed content request. Does not always exist (e.g. for unsafe form submission urls).

frame: Option<AffectedFrame>

Optional because not every mixed content issue is necessarily linked to a frame.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.