pub enum DataFrameError {
Show 17 variants
ReadBatchError(String),
CreateBatchError(String),
StorageError(StorageError),
DriftError(DriftError),
AddYearColumnError(String),
AddMonthColumnError(String),
AddDayColumnError(String),
AddHourColumnError(String),
WriteParquetError(String),
ParseTablePathError(String),
InferSchemaError(String),
CreateListingTableError(String),
RegisterTableError(String),
InvalidRecordTypeError(String),
DowncastError(String),
GetColumnError(String),
MissingFieldError(String),
}Variants§
ReadBatchError(String)
CreateBatchError(String)
StorageError(StorageError)
DriftError(DriftError)
AddYearColumnError(String)
AddMonthColumnError(String)
AddDayColumnError(String)
AddHourColumnError(String)
WriteParquetError(String)
ParseTablePathError(String)
InferSchemaError(String)
CreateListingTableError(String)
RegisterTableError(String)
InvalidRecordTypeError(String)
DowncastError(String)
GetColumnError(String)
MissingFieldError(String)
Implementations§
Source§impl DataFrameError
impl DataFrameError
pub fn traced_read_batch_error(err: impl Display) -> Self
pub fn traced_create_batch_error(err: impl Display) -> Self
pub fn traced_add_year_column_error(err: impl Display) -> Self
pub fn traced_add_month_column_error(err: impl Display) -> Self
pub fn traced_add_day_column_error(err: impl Display) -> Self
pub fn traced_add_hour_column_error(err: impl Display) -> Self
pub fn traced_write_parquet_error(err: impl Display) -> Self
pub fn traced_parse_table_path_error(err: impl Display) -> Self
pub fn traced_infer_schema_error(err: impl Display) -> Self
pub fn traced_create_listing_table_error(err: impl Display) -> Self
pub fn traced_register_table_error(err: impl Display) -> Self
pub fn traced_invalid_record_type_error(err: impl Display) -> Self
pub fn traced_downcast_error(err: impl Display) -> Self
pub fn traced_get_column_error(err: impl Display) -> Self
Trait Implementations§
Source§impl Debug for DataFrameError
impl Debug for DataFrameError
Source§impl Display for DataFrameError
impl Display for DataFrameError
Source§impl Error for DataFrameError
impl Error for DataFrameError
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()
Source§impl From<DataFrameError> for ScouterError
impl From<DataFrameError> for ScouterError
Source§fn from(source: DataFrameError) -> Self
fn from(source: DataFrameError) -> Self
Converts to this type from the input type.
Source§impl From<DataFrameError> for SqlError
impl From<DataFrameError> for SqlError
Source§fn from(source: DataFrameError) -> Self
fn from(source: DataFrameError) -> Self
Converts to this type from the input type.
Source§impl From<DriftError> for DataFrameError
impl From<DriftError> for DataFrameError
Source§fn from(source: DriftError) -> Self
fn from(source: DriftError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for DataFrameError
impl From<StorageError> for DataFrameError
Source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DataFrameError
impl PartialEq for DataFrameError
Source§impl TracedError for DataFrameError
impl TracedError for DataFrameError
impl StructuralPartialEq for DataFrameError
Auto Trait Implementations§
impl Freeze for DataFrameError
impl RefUnwindSafe for DataFrameError
impl Send for DataFrameError
impl Sync for DataFrameError
impl Unpin for DataFrameError
impl UnwindSafe for DataFrameError
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