pub(crate) enum ParquetFromCsvError {
CommandLineParseError(Error),
IoError(Error),
ArrowError(ArrowError),
ParquetError(ParquetError),
WithContext(String, Box<Self>),
}
Variants§
CommandLineParseError(Error)
IoError(Error)
ArrowError(ArrowError)
ParquetError(ParquetError)
WithContext(String, Box<Self>)
Implementations§
Source§impl ParquetFromCsvError
impl ParquetFromCsvError
pub fn with_context<E: Into<ParquetFromCsvError>>( inner_error: E, context: &str, ) -> ParquetFromCsvError
Trait Implementations§
Source§impl Debug for ParquetFromCsvError
impl Debug for ParquetFromCsvError
Source§impl Display for ParquetFromCsvError
impl Display for ParquetFromCsvError
Source§impl From<ArrowError> for ParquetFromCsvError
impl From<ArrowError> for ParquetFromCsvError
Source§impl From<Error> for ParquetFromCsvError
impl From<Error> for ParquetFromCsvError
Source§impl From<Error> for ParquetFromCsvError
impl From<Error> for ParquetFromCsvError
Source§impl From<ParquetError> for ParquetFromCsvError
impl From<ParquetError> for ParquetFromCsvError
Source§fn from(e: ParquetError) -> Self
fn from(e: ParquetError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParquetFromCsvError
impl !RefUnwindSafe for ParquetFromCsvError
impl Send for ParquetFromCsvError
impl Sync for ParquetFromCsvError
impl Unpin for ParquetFromCsvError
impl !UnwindSafe for ParquetFromCsvError
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
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