pub struct CrashReportContextEntry {
pub key: String,
pub value: String,
pub frameId: FrameId,
}Expand description
Key-value pair in CrashReportContext.
Fields§
§key: String§value: String§frameId: FrameIdThe ID of the frame where the key-value pair was set.
Trait Implementations§
Source§impl Clone for CrashReportContextEntry
impl Clone for CrashReportContextEntry
Source§fn clone(&self) -> CrashReportContextEntry
fn clone(&self) -> CrashReportContextEntry
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 CrashReportContextEntry
impl Debug for CrashReportContextEntry
Source§impl Default for CrashReportContextEntry
impl Default for CrashReportContextEntry
Source§fn default() -> CrashReportContextEntry
fn default() -> CrashReportContextEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CrashReportContextEntry
impl<'de> Deserialize<'de> for CrashReportContextEntry
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 CrashReportContextEntry
impl RefUnwindSafe for CrashReportContextEntry
impl Send for CrashReportContextEntry
impl Sync for CrashReportContextEntry
impl Unpin for CrashReportContextEntry
impl UnsafeUnpin for CrashReportContextEntry
impl UnwindSafe for CrashReportContextEntry
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