pub enum Error {
ConfigurationNotFound,
ConfigurationParseError(Error),
ConfigurationEncodingError(Utf8Error),
InvalidYactVersion(VersionReq, Version),
InvalidGlob(String),
RepositoryNotFound,
RepositoryIsBare,
GitError(Error),
TransformerError(String),
IoError(Error),
EmptyIndex,
}Variants§
ConfigurationNotFound
ConfigurationParseError(Error)
ConfigurationEncodingError(Utf8Error)
InvalidYactVersion(VersionReq, Version)
InvalidGlob(String)
RepositoryNotFound
RepositoryIsBare
GitError(Error)
An error was returned from libgit2.
TransformerError(String)
One of the transformers encountered an error.
IoError(Error)
Unexpected std::io::Error
EmptyIndex
No other errors, but the resulting index was empty.
The commit should be aborted.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
impl Freeze for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
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