use std::path::PathBuf; use crate::Error as CastoreError; /// Represents all error types that emitted by ingest_entries. /// It can represent errors uploading individual Directories and finalizing /// the upload. /// It also contains a generic error kind that'll carry ingestion-method /// specific errors. #[derive(Debug, thiserror::Error)] pub enum IngestionError { #[error("error from producer: {0}")] Producer(#[from] E), #[error("failed to upload directory at {0}: {1}")] UploadDirectoryError(PathBuf, CastoreError), #[error("failed to finalize directory upload: {0}")] FinalizeDirectoryUpload(CastoreError), }