pub struct CrashMetadata {
pub schema_version: u32,
pub source: SourceId,
pub timestamp: DateTime<Utc>,
pub kind: CrashKind,
pub build: BuildInfo,
pub panic_text: Option<String>,
pub context: Value,
pub attachments: Vec<AttachmentManifest>,
}Expand description
JSON metadata part for the crash-dump endpoint.
Fields§
§schema_version: u32Schema version. New values must match PROTOCOL_VERSION.
source: SourceIdProject, platform, app version, and installation identity.
timestamp: DateTime<Utc>UTC timestamp for when the crash was captured.
kind: CrashKindCrash artifact family.
build: BuildInfoBuild metadata for the crashing binary.
panic_text: Option<String>Panic text, when the crash originated from Rust panic handling.
context: ValueFree-form context, such as tick, RNG seed, or recent events.
attachments: Vec<AttachmentManifest>Files expected as attach:<key> multipart parts.
Implementations§
Trait Implementations§
Source§impl Clone for CrashMetadata
impl Clone for CrashMetadata
Source§fn clone(&self) -> CrashMetadata
fn clone(&self) -> CrashMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CrashMetadata
impl Debug for CrashMetadata
Source§impl<'de> Deserialize<'de> for CrashMetadata
impl<'de> Deserialize<'de> for CrashMetadata
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 CrashMetadata
impl PartialEq for CrashMetadata
Source§fn eq(&self, other: &CrashMetadata) -> bool
fn eq(&self, other: &CrashMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CrashMetadata
impl Serialize for CrashMetadata
impl Eq for CrashMetadata
impl StructuralPartialEq for CrashMetadata
Auto Trait Implementations§
impl Freeze for CrashMetadata
impl RefUnwindSafe for CrashMetadata
impl Send for CrashMetadata
impl Sync for CrashMetadata
impl Unpin for CrashMetadata
impl UnsafeUnpin for CrashMetadata
impl UnwindSafe for CrashMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request