pub struct ErrorExpression {
pub error_type: String,
pub message: String,
pub stack: Option<String>,
}
Fields§
§error_type: String
§message: String
§stack: Option<String>
Trait Implementations§
Source§impl Clone for ErrorExpression
impl Clone for ErrorExpression
Source§fn clone(&self) -> ErrorExpression
fn clone(&self) -> ErrorExpression
Returns a duplicate 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 ErrorExpression
impl Debug for ErrorExpression
Source§impl PartialEq for ErrorExpression
impl PartialEq for ErrorExpression
impl StructuralPartialEq for ErrorExpression
Auto Trait Implementations§
impl Freeze for ErrorExpression
impl RefUnwindSafe for ErrorExpression
impl Send for ErrorExpression
impl Sync for ErrorExpression
impl Unpin for ErrorExpression
impl UnwindSafe for ErrorExpression
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