Struct diagnostics_data::InspectMetadata
source · pub struct InspectMetadata {
pub errors: Option<Vec<InspectError>>,
pub filename: String,
pub component_url: Option<String>,
pub timestamp: i64,
}
Expand description
The metadata contained in a DiagnosticsData
object where the data source is
DataSource::Inspect
.
Fields§
§errors: Option<Vec<InspectError>>
Optional vector of errors encountered by platform.
filename: String
Name of diagnostics file producing data.
component_url: Option<String>
The url with which the component was launched.
timestamp: i64
Monotonic time in nanos.
Trait Implementations§
source§impl Clone for InspectMetadata
impl Clone for InspectMetadata
source§fn clone(&self) -> InspectMetadata
fn clone(&self) -> InspectMetadata
Returns a copy 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 InspectMetadata
impl Debug for InspectMetadata
source§impl<'de> Deserialize<'de> for InspectMetadata
impl<'de> Deserialize<'de> for InspectMetadata
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<InspectMetadata> for InspectMetadata
impl PartialEq<InspectMetadata> for InspectMetadata
source§fn eq(&self, other: &InspectMetadata) -> bool
fn eq(&self, other: &InspectMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.