pub struct AttributionReportingIssueDetails<'a> { /* private fields */ }Expand description
Details for issues around “Attribution Reporting API” usage. Explainer: https://github.com/WICG/attribution-reporting-api
Implementations§
Source§impl<'a> AttributionReportingIssueDetails<'a>
impl<'a> AttributionReportingIssueDetails<'a>
Sourcepub fn builder(
violation_type: impl Into<AttributionReportingIssueType>,
) -> AttributionReportingIssueDetailsBuilder<'a>
pub fn builder( violation_type: impl Into<AttributionReportingIssueType>, ) -> AttributionReportingIssueDetailsBuilder<'a>
Creates a builder for this type with the required parameters:
violation_type:
pub fn violation_type(&self) -> &AttributionReportingIssueType
pub fn request(&self) -> Option<&AffectedRequest<'a>>
pub fn violating_node_id(&self) -> Option<&BackendNodeId>
pub fn invalid_parameter(&self) -> Option<&str>
Trait Implementations§
Source§impl<'a> Clone for AttributionReportingIssueDetails<'a>
impl<'a> Clone for AttributionReportingIssueDetails<'a>
Source§fn clone(&self) -> AttributionReportingIssueDetails<'a>
fn clone(&self) -> AttributionReportingIssueDetails<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for AttributionReportingIssueDetails<'a>
impl<'a> Debug for AttributionReportingIssueDetails<'a>
Source§impl<'a> Default for AttributionReportingIssueDetails<'a>
impl<'a> Default for AttributionReportingIssueDetails<'a>
Source§fn default() -> AttributionReportingIssueDetails<'a>
fn default() -> AttributionReportingIssueDetails<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for AttributionReportingIssueDetails<'a>
impl<'de, 'a> Deserialize<'de> for AttributionReportingIssueDetails<'a>
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<'a> Freeze for AttributionReportingIssueDetails<'a>
impl<'a> RefUnwindSafe for AttributionReportingIssueDetails<'a>
impl<'a> Send for AttributionReportingIssueDetails<'a>
impl<'a> Sync for AttributionReportingIssueDetails<'a>
impl<'a> Unpin for AttributionReportingIssueDetails<'a>
impl<'a> UnsafeUnpin for AttributionReportingIssueDetails<'a>
impl<'a> UnwindSafe for AttributionReportingIssueDetails<'a>
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