pub struct SyncItemError {
pub code: String,
pub category: String,
pub message: String,
}Expand description
Stable per-item error payload (mirrors the top-level error envelope
minus exit_code).
Fields§
§code: StringStable machine code (e.g. E_SUBTITLE_FORMAT).
category: StringStable category (e.g. subtitle_format).
message: StringHuman-readable message.
Trait Implementations§
Source§impl Clone for SyncItemError
impl Clone for SyncItemError
Source§fn clone(&self) -> SyncItemError
fn clone(&self) -> SyncItemError
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 SyncItemError
impl Debug for SyncItemError
Auto Trait Implementations§
impl Freeze for SyncItemError
impl RefUnwindSafe for SyncItemError
impl Send for SyncItemError
impl Sync for SyncItemError
impl Unpin for SyncItemError
impl UnsafeUnpin for SyncItemError
impl UnwindSafe for SyncItemError
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