pub struct ConvertItemError {
pub category: String,
pub code: String,
pub message: String,
}Expand description
Per-item error embedded in ConvertItem::error.
Mirrors the top-level error envelope’s error field minus
exit_code (per the machine-readable-output spec’s “Per-Item
Status Semantics” requirement).
Fields§
§category: StringStable snake_case category from crate::error::SubXError::category.
code: StringStable upper-snake-case machine code from
crate::error::SubXError::machine_code.
message: StringHuman-readable message (English).
Trait Implementations§
Source§impl Debug for ConvertItemError
impl Debug for ConvertItemError
Auto Trait Implementations§
impl Freeze for ConvertItemError
impl RefUnwindSafe for ConvertItemError
impl Send for ConvertItemError
impl Sync for ConvertItemError
impl Unpin for ConvertItemError
impl UnsafeUnpin for ConvertItemError
impl UnwindSafe for ConvertItemError
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