Struct json_patch::PatchError
source · #[non_exhaustive]pub struct PatchError {
pub operation: usize,
pub path: Pointer,
pub kind: PatchErrorKind,
}
Expand description
This type represents all possible errors that can occur when applying JSON patch
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.operation: usize
Index of the operation that has failed.
path: Pointer
path
of the operation.
kind: PatchErrorKind
Kind of the error.
Trait Implementations§
source§impl Debug for PatchError
impl Debug for PatchError
source§impl Display for PatchError
impl Display for PatchError
source§impl Error for PatchError
impl Error for PatchError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PatchError
impl RefUnwindSafe for PatchError
impl Send for PatchError
impl Sync for PatchError
impl Unpin for PatchError
impl UnwindSafe for PatchError
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