pub struct AttributionReportingReportSentParams {
pub url: String,
pub body: Value,
pub result: AttributionReportingReportResult,
pub net_error: Option<i64>,
pub net_error_name: Option<String>,
pub http_status_code: Option<i64>,
}Fields§
§url: String§body: Value§result: AttributionReportingReportResult§net_error: Option<i64>If result is sent, populated with net/HTTP status.
net_error_name: Option<String>§http_status_code: Option<i64>Trait Implementations§
Source§impl Clone for AttributionReportingReportSentParams
impl Clone for AttributionReportingReportSentParams
Source§fn clone(&self) -> AttributionReportingReportSentParams
fn clone(&self) -> AttributionReportingReportSentParams
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 AttributionReportingReportSentParams
impl<'de> Deserialize<'de> for AttributionReportingReportSentParams
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 AttributionReportingReportSentParams
impl PartialEq for AttributionReportingReportSentParams
Source§fn eq(&self, other: &AttributionReportingReportSentParams) -> bool
fn eq(&self, other: &AttributionReportingReportSentParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributionReportingReportSentParams
Auto Trait Implementations§
impl Freeze for AttributionReportingReportSentParams
impl RefUnwindSafe for AttributionReportingReportSentParams
impl Send for AttributionReportingReportSentParams
impl Sync for AttributionReportingReportSentParams
impl Unpin for AttributionReportingReportSentParams
impl UnsafeUnpin for AttributionReportingReportSentParams
impl UnwindSafe for AttributionReportingReportSentParams
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