pub struct CrashHit {
pub uuid: String,
pub date: String,
pub signature: String,
pub product: String,
pub version: String,
pub platform: Option<String>,
pub build_id: Option<String>,
pub release_channel: Option<String>,
pub platform_version: Option<String>,
}Fields§
§uuid: String§date: String§signature: String§product: String§version: String§platform: Option<String>§build_id: Option<String>§release_channel: Option<String>§platform_version: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CrashHit
impl<'de> Deserialize<'de> for CrashHit
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 CrashHit
impl RefUnwindSafe for CrashHit
impl Send for CrashHit
impl Sync for CrashHit
impl Unpin for CrashHit
impl UnsafeUnpin for CrashHit
impl UnwindSafe for CrashHit
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