pub struct DiagnosticErrorInfo {
pub name: Option<String>,
pub message: String,
pub stack: Option<String>,
pub code: Option<Value>,
}Fields§
§name: Option<String>§message: String§stack: Option<String>§code: Option<Value>Trait Implementations§
Source§impl Clone for DiagnosticErrorInfo
impl Clone for DiagnosticErrorInfo
Source§fn clone(&self) -> DiagnosticErrorInfo
fn clone(&self) -> DiagnosticErrorInfo
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 DiagnosticErrorInfo
impl Debug for DiagnosticErrorInfo
Source§impl<'de> Deserialize<'de> for DiagnosticErrorInfo
impl<'de> Deserialize<'de> for DiagnosticErrorInfo
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 DiagnosticErrorInfo
impl PartialEq for DiagnosticErrorInfo
Source§fn eq(&self, other: &DiagnosticErrorInfo) -> bool
fn eq(&self, other: &DiagnosticErrorInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DiagnosticErrorInfo
impl Serialize for DiagnosticErrorInfo
impl StructuralPartialEq for DiagnosticErrorInfo
Auto Trait Implementations§
impl Freeze for DiagnosticErrorInfo
impl RefUnwindSafe for DiagnosticErrorInfo
impl Send for DiagnosticErrorInfo
impl Sync for DiagnosticErrorInfo
impl Unpin for DiagnosticErrorInfo
impl UnsafeUnpin for DiagnosticErrorInfo
impl UnwindSafe for DiagnosticErrorInfo
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