pub struct AttributionReportingIssueDetails {
pub violation_type: AttributionReportingIssueType,
pub request: Option<AffectedRequest>,
pub violating_node_id: Option<BackendNodeId>,
pub invalid_parameter: Option<String>,
}Expand description
Details for issues around “Attribution Reporting API” usage. Explainer: https://github.com/WICG/attribution-reporting-api AttributionReportingIssueDetails
Fields§
§violation_type: AttributionReportingIssueType§request: Option<AffectedRequest>§violating_node_id: Option<BackendNodeId>§invalid_parameter: Option<String>Implementations§
Source§impl AttributionReportingIssueDetails
impl AttributionReportingIssueDetails
pub fn new(violation_type: impl Into<AttributionReportingIssueType>) -> Self
Source§impl AttributionReportingIssueDetails
impl AttributionReportingIssueDetails
pub fn builder() -> AttributionReportingIssueDetailsBuilder
Source§impl AttributionReportingIssueDetails
impl AttributionReportingIssueDetails
pub const IDENTIFIER: &'static str = "Audits.AttributionReportingIssueDetails"
Trait Implementations§
Source§impl Clone for AttributionReportingIssueDetails
impl Clone for AttributionReportingIssueDetails
Source§fn clone(&self) -> AttributionReportingIssueDetails
fn clone(&self) -> AttributionReportingIssueDetails
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<'de> Deserialize<'de> for AttributionReportingIssueDetails
impl<'de> Deserialize<'de> for AttributionReportingIssueDetails
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
Source§impl PartialEq for AttributionReportingIssueDetails
impl PartialEq for AttributionReportingIssueDetails
Source§fn eq(&self, other: &AttributionReportingIssueDetails) -> bool
fn eq(&self, other: &AttributionReportingIssueDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributionReportingIssueDetails
Auto Trait Implementations§
impl Freeze for AttributionReportingIssueDetails
impl RefUnwindSafe for AttributionReportingIssueDetails
impl Send for AttributionReportingIssueDetails
impl Sync for AttributionReportingIssueDetails
impl Unpin for AttributionReportingIssueDetails
impl UnwindSafe for AttributionReportingIssueDetails
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