pub enum BaseSchemasError {
Tool(GitToolError),
Git(BaseError),
Submitted(ExecuteError),
}Expand description
Failure while assembling current and base-revision package schemas.
Variants§
Tool(GitToolError)
The Git executable could not be started.
Git(BaseError)
Git could not resolve or read the requested base.
Submitted(ExecuteError)
The current checked-in schema did not satisfy the existing filesystem guard.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for BaseSchemasError
impl !UnwindSafe for BaseSchemasError
impl Freeze for BaseSchemasError
impl Send for BaseSchemasError
impl Sync for BaseSchemasError
impl Unpin for BaseSchemasError
impl UnsafeUnpin for BaseSchemasError
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