pub struct ExceptionDetails {
pub evaluate_name: Option<String>,
pub full_type_name: Option<String>,
pub inner_exception: Option<Vec<ExceptionDetails>>,
pub message: Option<String>,
pub stack_trace: Option<String>,
pub type_name: Option<String>,
}
Expand description
Detailed information about an exception that has occurred.
Fields§
§evaluate_name: Option<String>
Optional expression that can be evaluated in the current scope to obtain the exception object.
full_type_name: Option<String>
Fully-qualified type name of the exception object.
inner_exception: Option<Vec<ExceptionDetails>>
Details of the exception contained by this exception, if any.
message: Option<String>
Message contained in the exception.
stack_trace: Option<String>
Stack trace at the time the exception was thrown.
type_name: Option<String>
Short type name of the exception object.
Trait Implementations§
Source§impl Clone for ExceptionDetails
impl Clone for ExceptionDetails
Source§fn clone(&self) -> ExceptionDetails
fn clone(&self) -> ExceptionDetails
Returns a copy 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 ExceptionDetails
impl Debug for ExceptionDetails
Source§impl Default for ExceptionDetails
impl Default for ExceptionDetails
Source§fn default() -> ExceptionDetails
fn default() -> ExceptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExceptionDetails
impl<'de> Deserialize<'de> for ExceptionDetails
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 ExceptionDetails
impl PartialEq for ExceptionDetails
Source§impl Serialize for ExceptionDetails
impl Serialize for ExceptionDetails
impl StructuralPartialEq for ExceptionDetails
Auto Trait Implementations§
impl Freeze for ExceptionDetails
impl RefUnwindSafe for ExceptionDetails
impl Send for ExceptionDetails
impl Sync for ExceptionDetails
impl Unpin for ExceptionDetails
impl UnwindSafe for ExceptionDetails
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