pub struct MatchItemError {
pub category: String,
pub code: String,
pub message: String,
}Expand description
Per-item error embedded in MatchOpItem::error when its status is "error".
Mirrors the top-level error envelope’s error field minus exit_code.
Fields§
§category: StringStable snake_case category from SubXError::category.
code: StringStable upper-snake-case machine code from SubXError::machine_code.
message: StringHuman-readable message (English).
Trait Implementations§
Source§impl Debug for MatchItemError
impl Debug for MatchItemError
Auto Trait Implementations§
impl Freeze for MatchItemError
impl RefUnwindSafe for MatchItemError
impl Send for MatchItemError
impl Sync for MatchItemError
impl Unpin for MatchItemError
impl UnsafeUnpin for MatchItemError
impl UnwindSafe for MatchItemError
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