#[non_exhaustive]pub enum BuiltinDeserializationErrorKind {
ColumnDeserializationFailed {
column_index: usize,
column_name: String,
err: DeserializationError,
},
RawColumnDeserializationFailed {
column_index: usize,
column_name: String,
err: DeserializationError,
},
}
Expand description
Describes why deserializing a result row failed.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ColumnDeserializationFailed
One of the columns failed to deserialize.
Fields
§
err: DeserializationError
The error that caused the column deserialization to fail.
RawColumnDeserializationFailed
One of the raw columns failed to deserialize, most probably due to the invalid column structure inside a row in the frame.
Trait Implementations§
source§impl Clone for BuiltinDeserializationErrorKind
impl Clone for BuiltinDeserializationErrorKind
source§fn clone(&self) -> BuiltinDeserializationErrorKind
fn clone(&self) -> BuiltinDeserializationErrorKind
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 moreAuto Trait Implementations§
impl Freeze for BuiltinDeserializationErrorKind
impl !RefUnwindSafe for BuiltinDeserializationErrorKind
impl Send for BuiltinDeserializationErrorKind
impl Sync for BuiltinDeserializationErrorKind
impl Unpin for BuiltinDeserializationErrorKind
impl !UnwindSafe for BuiltinDeserializationErrorKind
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)