pub struct InterpretedError {
pub status_code: u16,
pub error_code: String,
pub explanation: String,
pub suggestions: Vec<String>,
pub original_message: String,
}Expand description
Parsed and interpreted APS error
Fields§
§status_code: u16§error_code: String§explanation: String§suggestions: Vec<String>§original_message: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for InterpretedError
impl RefUnwindSafe for InterpretedError
impl Send for InterpretedError
impl Sync for InterpretedError
impl Unpin for InterpretedError
impl UnsafeUnpin for InterpretedError
impl UnwindSafe for InterpretedError
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