pub struct ReportingApiReport {
pub id: ReportId,
pub initiator_url: String,
pub destination: String,
pub type: String,
pub timestamp: TimeSinceEpoch,
pub depth: JsUInt,
pub completed_attempts: JsUInt,
pub status: ReportStatus,
}Fields§
§id: ReportId§initiator_url: String§destination: String§type: String§timestamp: TimeSinceEpoch§depth: JsUInt§completed_attempts: JsUInt§status: ReportStatusTrait Implementations§
Source§impl Clone for ReportingApiReport
impl Clone for ReportingApiReport
Source§fn clone(&self) -> ReportingApiReport
fn clone(&self) -> ReportingApiReport
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 ReportingApiReport
impl Debug for ReportingApiReport
Source§impl<'de> Deserialize<'de> for ReportingApiReport
impl<'de> Deserialize<'de> for ReportingApiReport
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 ReportingApiReport
impl PartialEq for ReportingApiReport
Source§impl Serialize for ReportingApiReport
impl Serialize for ReportingApiReport
impl StructuralPartialEq for ReportingApiReport
Auto Trait Implementations§
impl Freeze for ReportingApiReport
impl RefUnwindSafe for ReportingApiReport
impl Send for ReportingApiReport
impl Sync for ReportingApiReport
impl Unpin for ReportingApiReport
impl UnwindSafe for ReportingApiReport
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