pub struct SerializedError {
pub kind: SerializedErrorKind,
pub message: String,
pub data: Option<Vec<(SerializedValue, SerializedValue)>>,
pub cause: Option<Box<SerializedError>>,
}Expand description
Serialized form of crate::error::ExceptionInfo.
Fields§
§kind: SerializedErrorKind§message: String§data: Option<Vec<(SerializedValue, SerializedValue)>>§cause: Option<Box<SerializedError>>Trait Implementations§
Source§impl Clone for SerializedError
impl Clone for SerializedError
Source§fn clone(&self) -> SerializedError
fn clone(&self) -> SerializedError
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 moreAuto Trait Implementations§
impl Freeze for SerializedError
impl RefUnwindSafe for SerializedError
impl Send for SerializedError
impl Sync for SerializedError
impl Unpin for SerializedError
impl UnsafeUnpin for SerializedError
impl UnwindSafe for SerializedError
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