pub enum BatchReconciliationError {
BatchWorkspaceError(BatchWorkspaceError),
BatchDownloadError(BatchDownloadError),
BatchValidationError(BatchValidationError),
BatchErrorProcessingError(BatchErrorProcessingError),
BatchOutputProcessingError(BatchOutputProcessingError),
FileMoveError(FileMoveError),
OperationNotImplemented {
operation: BatchFileTripleReconciliationOperation,
},
ReconciliationFailed {
index: BatchIndex,
errors: Vec<(BatchFileTripleReconciliationOperation, BatchReconciliationError)>,
},
MissingBatchInputFileButOthersExist {
index: BatchIndex,
output: Option<PathBuf>,
error: Option<PathBuf>,
},
}Variants§
BatchWorkspaceError(BatchWorkspaceError)
BatchDownloadError(BatchDownloadError)
BatchValidationError(BatchValidationError)
BatchErrorProcessingError(BatchErrorProcessingError)
BatchOutputProcessingError(BatchOutputProcessingError)
FileMoveError(FileMoveError)
OperationNotImplemented
Fields
§
operation: BatchFileTripleReconciliationOperationReconciliationFailed
Fields
§
index: BatchIndexMissingBatchInputFileButOthersExist
Trait Implementations§
Source§impl Debug for BatchReconciliationError
impl Debug for BatchReconciliationError
Source§impl Display for BatchReconciliationError
impl Display for BatchReconciliationError
Source§impl From<BatchDownloadError> for BatchReconciliationError
impl From<BatchDownloadError> for BatchReconciliationError
Source§fn from(x: BatchDownloadError) -> Self
fn from(x: BatchDownloadError) -> Self
Converts to this type from the input type.
Source§impl From<BatchErrorProcessingError> for BatchReconciliationError
impl From<BatchErrorProcessingError> for BatchReconciliationError
Source§fn from(x: BatchErrorProcessingError) -> Self
fn from(x: BatchErrorProcessingError) -> Self
Converts to this type from the input type.
Source§impl From<BatchOutputProcessingError> for BatchReconciliationError
impl From<BatchOutputProcessingError> for BatchReconciliationError
Source§fn from(x: BatchOutputProcessingError) -> Self
fn from(x: BatchOutputProcessingError) -> Self
Converts to this type from the input type.
Source§impl From<BatchValidationError> for BatchReconciliationError
impl From<BatchValidationError> for BatchReconciliationError
Source§fn from(x: BatchValidationError) -> Self
fn from(x: BatchValidationError) -> Self
Converts to this type from the input type.
Source§impl From<BatchWorkspaceError> for BatchReconciliationError
impl From<BatchWorkspaceError> for BatchReconciliationError
Source§fn from(x: BatchWorkspaceError) -> Self
fn from(x: BatchWorkspaceError) -> Self
Converts to this type from the input type.
Source§impl From<ErrorSavingFailedBatchEntries> for BatchReconciliationError
impl From<ErrorSavingFailedBatchEntries> for BatchReconciliationError
Source§fn from(x: ErrorSavingFailedBatchEntries) -> Self
fn from(x: ErrorSavingFailedBatchEntries) -> Self
Converts to this type from the input type.
Source§impl From<FileMoveError> for BatchReconciliationError
impl From<FileMoveError> for BatchReconciliationError
Source§fn from(x: FileMoveError) -> Self
fn from(x: FileMoveError) -> Self
Converts to this type from the input type.
Source§impl From<JsonParseError> for BatchReconciliationError
impl From<JsonParseError> for BatchReconciliationError
Source§fn from(x: JsonParseError) -> Self
fn from(x: JsonParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BatchReconciliationError
impl !RefUnwindSafe for BatchReconciliationError
impl Send for BatchReconciliationError
impl Sync for BatchReconciliationError
impl Unpin for BatchReconciliationError
impl !UnwindSafe for BatchReconciliationError
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