pub enum TableReaderError {
Other,
}Expand description
Error that occur during the reading of the table format.
Variants§
Other
An unexpected error occured.
Trait Implementations§
source§impl Clone for TableReaderError
impl Clone for TableReaderError
source§fn clone(&self) -> TableReaderError
fn clone(&self) -> TableReaderError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TableReaderError
impl Debug for TableReaderError
source§impl Display for TableReaderError
impl Display for TableReaderError
source§impl Error for TableReaderError
impl Error for TableReaderError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<DeltaTableError> for TableReaderError
impl From<DeltaTableError> for TableReaderError
source§fn from(_value: DeltaTableError) -> Self
fn from(_value: DeltaTableError) -> Self
Converts to this type from the input type.
source§impl From<TableReaderError> for ServerError
impl From<TableReaderError> for ServerError
source§fn from(value: TableReaderError) -> Self
fn from(value: TableReaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for TableReaderError
impl Send for TableReaderError
impl Sync for TableReaderError
impl Unpin for TableReaderError
impl UnwindSafe for TableReaderError
Blanket Implementations§
source§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere T: Error + 'static,
source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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