pub struct AttributionReportingIssueDetails {
pub violationType: AttributionReportingIssueType,
pub request: Option<AffectedRequest>,
pub violatingNodeId: Option<BackendNodeId>,
pub invalidParameter: Option<String>,
}Expand description
Details for issues around “Attribution Reporting API” usage. Explainer: https://github.com/WICG/attribution-reporting-api
Fields§
§violationType: AttributionReportingIssueType§request: Option<AffectedRequest>§violatingNodeId: Option<BackendNodeId>§invalidParameter: Option<String>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 Default for AttributionReportingIssueDetails
impl Default for AttributionReportingIssueDetails
Source§fn default() -> AttributionReportingIssueDetails
fn default() -> AttributionReportingIssueDetails
Returns the “default value” for a type. Read more
Source§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
Auto Trait Implementations§
impl Freeze for AttributionReportingIssueDetails
impl RefUnwindSafe for AttributionReportingIssueDetails
impl Send for AttributionReportingIssueDetails
impl Sync for AttributionReportingIssueDetails
impl Unpin for AttributionReportingIssueDetails
impl UnsafeUnpin 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