pub enum CodexGitError {
Git {
source: Error,
},
IO(Error),
Ron(Error),
Other(Error),
CodexGit,
Utf8Error(Utf8Error),
}
Expand description
error for this crate
Variants§
Trait Implementations§
Source§impl Debug for CodexGitError
impl Debug for CodexGitError
Source§impl Display for CodexGitError
impl Display for CodexGitError
Source§impl Error for CodexGitError
impl Error for CodexGitError
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<Error> for CodexGitError
impl From<Error> for CodexGitError
Source§impl From<Error> for CodexGitError
impl From<Error> for CodexGitError
Source§impl From<Error> for CodexGitError
impl From<Error> for CodexGitError
Auto Trait Implementations§
impl Freeze for CodexGitError
impl !RefUnwindSafe for CodexGitError
impl Send for CodexGitError
impl Sync for CodexGitError
impl Unpin for CodexGitError
impl !UnwindSafe for CodexGitError
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