Enum lance_core::io::commit::CommitError
source · pub enum CommitError {
CommitConflict,
OtherError(Error),
}
Expand description
Errors that can occur when committing a manifest.
Variants§
CommitConflict
Another transaction has already been written to the path
OtherError(Error)
Something else went wrong
Trait Implementations§
source§impl Debug for CommitError
impl Debug for CommitError
source§impl From<CommitError> for Error
impl From<CommitError> for Error
source§fn from(e: CommitError) -> Self
fn from(e: CommitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CommitError
impl Send for CommitError
impl Sync for CommitError
impl Unpin for CommitError
impl !UnwindSafe for CommitError
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