Skip to main content

InspectorIssueDetails

Struct InspectorIssueDetails 

Source
pub struct InspectorIssueDetails<'a> { /* private fields */ }
Expand description

This struct holds a list of optional fields with additional information specific to the kind of issue. When adding a new issue code, please also add a new optional field to this type.

Implementations§

Source§

impl<'a> InspectorIssueDetails<'a>

Source

pub fn builder() -> InspectorIssueDetailsBuilder<'a>

Source

pub fn cookieIssueDetails(&self) -> Option<&CookieIssueDetails<'a>>

Source

pub fn mixedContentIssueDetails(&self) -> Option<&MixedContentIssueDetails<'a>>

Source

pub fn blockedByResponseIssueDetails( &self, ) -> Option<&BlockedByResponseIssueDetails<'a>>

Source

pub fn heavyAdIssueDetails(&self) -> Option<&HeavyAdIssueDetails<'a>>

Source

pub fn contentSecurityPolicyIssueDetails( &self, ) -> Option<&ContentSecurityPolicyIssueDetails<'a>>

Source

pub fn sharedArrayBufferIssueDetails( &self, ) -> Option<&SharedArrayBufferIssueDetails<'a>>

Source

pub fn corsIssueDetails(&self) -> Option<&CorsIssueDetails<'a>>

Source

pub fn attributionReportingIssueDetails( &self, ) -> Option<&AttributionReportingIssueDetails<'a>>

Source

pub fn quirksModeIssueDetails(&self) -> Option<&QuirksModeIssueDetails<'a>>

Source

pub fn partitioningBlobURLIssueDetails( &self, ) -> Option<&PartitioningBlobURLIssueDetails<'a>>

Source

pub fn navigatorUserAgentIssueDetails( &self, ) -> Option<&NavigatorUserAgentIssueDetails<'a>>

Source

pub fn genericIssueDetails(&self) -> Option<&GenericIssueDetails<'a>>

Source

pub fn deprecationIssueDetails(&self) -> Option<&DeprecationIssueDetails<'a>>

Source

pub fn clientHintIssueDetails(&self) -> Option<&ClientHintIssueDetails<'a>>

Source

pub fn federatedAuthRequestIssueDetails( &self, ) -> Option<&FederatedAuthRequestIssueDetails>

Source

pub fn bounceTrackingIssueDetails( &self, ) -> Option<&BounceTrackingIssueDetails<'a>>

Source

pub fn cookieDeprecationMetadataIssueDetails( &self, ) -> Option<&CookieDeprecationMetadataIssueDetails<'a>>

Source

pub fn stylesheetLoadingIssueDetails( &self, ) -> Option<&StylesheetLoadingIssueDetails<'a>>

Source

pub fn propertyRuleIssueDetails(&self) -> Option<&PropertyRuleIssueDetails<'a>>

Source

pub fn federatedAuthUserInfoRequestIssueDetails( &self, ) -> Option<&FederatedAuthUserInfoRequestIssueDetails>

Source

pub fn sharedDictionaryIssueDetails( &self, ) -> Option<&SharedDictionaryIssueDetails<'a>>

Source

pub fn elementAccessibilityIssueDetails( &self, ) -> Option<&ElementAccessibilityIssueDetails>

Source

pub fn sriMessageSignatureIssueDetails( &self, ) -> Option<&SRIMessageSignatureIssueDetails<'a>>

Source

pub fn unencodedDigestIssueDetails( &self, ) -> Option<&UnencodedDigestIssueDetails<'a>>

Source

pub fn connectionAllowlistIssueDetails( &self, ) -> Option<&ConnectionAllowlistIssueDetails<'a>>

Source

pub fn userReidentificationIssueDetails( &self, ) -> Option<&UserReidentificationIssueDetails<'a>>

Source

pub fn permissionElementIssueDetails( &self, ) -> Option<&PermissionElementIssueDetails<'a>>

Source

pub fn performanceIssueDetails(&self) -> Option<&PerformanceIssueDetails<'a>>

Source

pub fn selectivePermissionsInterventionIssueDetails( &self, ) -> Option<&SelectivePermissionsInterventionIssueDetails<'a>>

Trait Implementations§

Source§

impl<'a> Clone for InspectorIssueDetails<'a>

Source§

fn clone(&self) -> InspectorIssueDetails<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for InspectorIssueDetails<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Default for InspectorIssueDetails<'a>

Source§

fn default() -> InspectorIssueDetails<'a>

Returns the “default value” for a type. Read more
Source§

impl<'de, 'a> Deserialize<'de> for InspectorIssueDetails<'a>

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'a> Serialize for InspectorIssueDetails<'a>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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