Struct chrome_remote_interface_model::audits::MixedContentIssueDetails[][src]

pub struct MixedContentIssueDetails { /* fields omitted */ }

Implementations

impl MixedContentIssueDetails[src]

pub fn builder() -> MixedContentIssueDetailsBuilder[src]

pub fn resource_type(&self) -> Option<&MixedContentResourceType>[src]

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

pub fn resolution_status(&self) -> &MixedContentResolutionStatus[src]

The way the mixed content issue is being resolved.

pub fn insecure_url(&self) -> &str[src]

The unsafe http url causing the mixed content issue.

pub fn main_resource_url(&self) -> &str[src]

The url responsible for the call to an unsafe url.

pub fn request(&self) -> Option<&AffectedRequest>[src]

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

pub fn frame(&self) -> Option<&AffectedFrame>[src]

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

Trait Implementations

impl Clone for MixedContentIssueDetails[src]

impl Debug for MixedContentIssueDetails[src]

impl<'de> Deserialize<'de> for MixedContentIssueDetails[src]

impl Serialize for MixedContentIssueDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.