PatchError

Enum PatchError 

Source
pub enum PatchError {
    PathTraversal(PathBuf),
    TargetNotFound(PathBuf),
    PermissionDenied {
        path: PathBuf,
    },
    TargetIsDirectory {
        path: PathBuf,
    },
    Io {
        path: PathBuf,
        source: Error,
    },
}
Expand description

Represents “hard” errors that can occur during patch operations.

This error type is returned by functions like apply_patch_to_file() for unrecoverable issues such as I/O errors, permission problems, or security violations like path traversal. It is distinct from a partial apply, which is handled by the result structs.

§Example

let dir = tempdir()?;
// Note: "missing.txt" does not exist in the directory.

let diff = r#"
```diff
--- a/missing.txt
+++ b/missing.txt
@@ -1 +1 @@
-foo
+bar
```
"#;
let patch = parse_single_patch(diff)?;
let options = ApplyOptions::new();

// This will fail because the target file doesn't exist and it's not a creation patch.
let result = apply_patch_to_file(&patch, dir.path(), options);

assert!(matches!(result, Err(PatchError::TargetNotFound(_))));

Variants§

§

PathTraversal(PathBuf)

The patch attempted to access a path outside the target directory. This is a security measure to prevent malicious patches from modifying unintended files (e.g., --- a/../../etc/passwd).

§

TargetNotFound(PathBuf)

The target file for a patch could not be found, and the patch did not appear to be for file creation (i.e., its first hunk was not an addition-only hunk).

§

PermissionDenied

The user does not have permission to read or write to the specified path.

Fields

§path: PathBuf
§

TargetIsDirectory

The target path for a patch exists but is a directory, not a file.

Fields

§path: PathBuf
§

Io

An I/O error occurred while reading or writing a file. This is a “hard” error that stops the entire process.

Fields

§path: PathBuf
§source: Error

Trait Implementations§

Source§

impl Debug for PatchError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for PatchError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for PatchError

Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<PatchError> for StrictApplyError

Source§

fn from(source: PatchError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.