pub enum DiffError {
UnsupportedPathEncoding(Utf8Error),
InvalidPath(RepoPathError),
Parse {
source: PatchSetParseError,
},
Utf8(Utf8Error),
InvalidPorcelainEntry,
}Expand description
Errors shared by model and parser adapters.
Variants§
UnsupportedPathEncoding(Utf8Error)
A repository path could not be represented safely.
InvalidPath(RepoPathError)
A path failed the relative-path contract.
Parse
A diff could not be parsed.
Fields
§
source: PatchSetParseErrorStructured parser error, including the failing input span.
Utf8(Utf8Error)
An underlying UTF-8 conversion failed.
InvalidPorcelainEntry
A NUL-delimited porcelain record did not follow Git’s v1 grammar.
Trait Implementations§
Source§impl Error for DiffError
impl Error for DiffError
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()
Source§impl From<FromUtf8Error> for DiffError
impl From<FromUtf8Error> for DiffError
Source§fn from(error: FromUtf8Error) -> Self
fn from(error: FromUtf8Error) -> Self
Converts to this type from the input type.
Source§impl From<RepoPathError> for DiffError
impl From<RepoPathError> for DiffError
Source§fn from(source: RepoPathError) -> Self
fn from(source: RepoPathError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DiffError
impl RefUnwindSafe for DiffError
impl Send for DiffError
impl Sync for DiffError
impl Unpin for DiffError
impl UnsafeUnpin for DiffError
impl UnwindSafe for DiffError
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