pub struct FrontendError {
pub session_id: String,
pub timestamp_unix_nanos: i64,
pub message: String,
pub stack: Option<String>,
pub filename: Option<String>,
pub line_number: Option<i64>,
pub column_number: Option<i64>,
pub error_type: Option<String>,
pub trace_id: Option<String>,
pub span_id: Option<String>,
pub window_label: Option<String>,
pub attributes: Value,
}Fields§
§session_id: String§timestamp_unix_nanos: i64§message: String§stack: Option<String>§filename: Option<String>§line_number: Option<i64>§column_number: Option<i64>§error_type: Option<String>§trace_id: Option<String>§span_id: Option<String>§window_label: Option<String>§attributes: ValueTrait Implementations§
Source§impl Clone for FrontendError
impl Clone for FrontendError
Source§fn clone(&self) -> FrontendError
fn clone(&self) -> FrontendError
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 FrontendError
impl Debug for FrontendError
Source§impl<'de> Deserialize<'de> for FrontendError
impl<'de> Deserialize<'de> for FrontendError
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 FrontendError
impl PartialEq for FrontendError
Source§fn eq(&self, other: &FrontendError) -> bool
fn eq(&self, other: &FrontendError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FrontendError
impl Serialize for FrontendError
impl StructuralPartialEq for FrontendError
Auto Trait Implementations§
impl Freeze for FrontendError
impl RefUnwindSafe for FrontendError
impl Send for FrontendError
impl Sync for FrontendError
impl Unpin for FrontendError
impl UnsafeUnpin for FrontendError
impl UnwindSafe for FrontendError
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