pub enum EncodingError {
EmptyData,
MissingMetadata(&'static str),
MissingColumn(&'static str, usize),
ParseError(&'static str, String),
InvalidColumnType(&'static str, usize, DataType, DataType),
PrecisionMismatch {
field: &'static str,
expected_bytes: i32,
actual_bytes: i32,
},
ArrowError(ArrowError),
}Variants§
EmptyData
MissingMetadata(&'static str)
MissingColumn(&'static str, usize)
ParseError(&'static str, String)
InvalidColumnType(&'static str, usize, DataType, DataType)
PrecisionMismatch
ArrowError(ArrowError)
Trait Implementations§
Source§impl Debug for EncodingError
impl Debug for EncodingError
Source§impl Display for EncodingError
impl Display for EncodingError
Source§impl Error for EncodingError
impl Error for EncodingError
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<ArrowError> for EncodingError
impl From<ArrowError> for EncodingError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for EncodingError
impl !UnwindSafe for EncodingError
impl Freeze for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnsafeUnpin for EncodingError
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