pub struct ExceptionValue {
pub identifier: String,
pub message: String,
pub stack: Vec<String>,
pub causes: Vec<ExceptionValue>,
}Fields§
§identifier: String§message: String§stack: Vec<String>§causes: Vec<ExceptionValue>Trait Implementations§
Source§impl Clone for ExceptionValue
impl Clone for ExceptionValue
Source§fn clone(&self) -> ExceptionValue
fn clone(&self) -> ExceptionValue
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 ExceptionValue
impl Debug for ExceptionValue
Source§impl<'de> Deserialize<'de> for ExceptionValue
impl<'de> Deserialize<'de> for ExceptionValue
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
impl Eq for ExceptionValue
Source§impl PartialEq for ExceptionValue
impl PartialEq for ExceptionValue
Source§impl Serialize for ExceptionValue
impl Serialize for ExceptionValue
impl StructuralPartialEq for ExceptionValue
Auto Trait Implementations§
impl Freeze for ExceptionValue
impl RefUnwindSafe for ExceptionValue
impl Send for ExceptionValue
impl Sync for ExceptionValue
impl Unpin for ExceptionValue
impl UnsafeUnpin for ExceptionValue
impl UnwindSafe for ExceptionValue
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