pub struct InspectorIssueDetails { /* private fields */ }Available on crate features
experimental and Audits and Network only.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 InspectorIssueDetails
impl InspectorIssueDetails
pub fn builder() -> InspectorIssueDetailsBuilder
pub fn mixed_content_issue_details(&self) -> Option<&MixedContentIssueDetails>
pub fn blocked_by_response_issue_details( &self, ) -> Option<&BlockedByResponseIssueDetails>
pub fn heavy_ad_issue_details(&self) -> Option<&HeavyAdIssueDetails>
pub fn content_security_policy_issue_details( &self, ) -> Option<&ContentSecurityPolicyIssueDetails>
pub fn twa_quality_enforcement_details( &self, ) -> Option<&TrustedWebActivityIssueDetails>
pub fn low_text_contrast_issue_details( &self, ) -> Option<&LowTextContrastIssueDetails>
pub fn cors_issue_details(&self) -> Option<&CorsIssueDetails>
Trait Implementations§
Source§impl Clone for InspectorIssueDetails
impl Clone for InspectorIssueDetails
Source§fn clone(&self) -> InspectorIssueDetails
fn clone(&self) -> InspectorIssueDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InspectorIssueDetails
impl Debug for InspectorIssueDetails
Source§impl<'de> Deserialize<'de> for InspectorIssueDetails
impl<'de> Deserialize<'de> for InspectorIssueDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InspectorIssueDetails
impl RefUnwindSafe for InspectorIssueDetails
impl Send for InspectorIssueDetails
impl Sync for InspectorIssueDetails
impl Unpin for InspectorIssueDetails
impl UnwindSafe for InspectorIssueDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more