pub enum WarehouseError {
Create {
path: PathBuf,
source: Error,
},
Write {
path: PathBuf,
source: ParquetError,
},
Batch {
table: String,
source: ArrowError,
},
Manifest(Error),
ManifestWrite {
path: PathBuf,
source: Error,
},
}Expand description
What went wrong writing a warehouse.
Variants§
Create
A directory or file could not be created.
Write
Parquet encoding failed.
Batch
Columns and rows did not line up — a bug here, not bad input.
Manifest(Error)
The manifest could not be encoded as JSON.
ManifestWrite
The manifest encoded but could not be written.
Trait Implementations§
Source§impl Debug for WarehouseError
impl Debug for WarehouseError
Source§impl Display for WarehouseError
impl Display for WarehouseError
Source§impl Error for WarehouseError
impl Error for WarehouseError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for WarehouseError
impl !UnwindSafe for WarehouseError
impl Freeze for WarehouseError
impl Send for WarehouseError
impl Sync for WarehouseError
impl Unpin for WarehouseError
impl UnsafeUnpin for WarehouseError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more