Struct json_patch::PatchError
source · #[non_exhaustive]pub struct PatchError {
pub operation: usize,
pub path: String,
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: String
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)>
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()