#[non_exhaustive]pub enum UdtDeserializationErrorKind {
FieldDeserializationFailed {
field_name: String,
err: DeserializationError,
},
}
Expand description
Describes why deserialization of a user defined type 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.
FieldDeserializationFailed
One of the fields failed to deserialize.
Fields
§
err: DeserializationError
The error that caused the UDT field deserialization to fail.
Trait Implementations§
source§impl Clone for UdtDeserializationErrorKind
impl Clone for UdtDeserializationErrorKind
source§fn clone(&self) -> UdtDeserializationErrorKind
fn clone(&self) -> UdtDeserializationErrorKind
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 UdtDeserializationErrorKind
impl Debug for UdtDeserializationErrorKind
source§impl From<UdtDeserializationErrorKind> for BuiltinDeserializationErrorKind
impl From<UdtDeserializationErrorKind> for BuiltinDeserializationErrorKind
source§fn from(err: UdtDeserializationErrorKind) -> Self
fn from(err: UdtDeserializationErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UdtDeserializationErrorKind
impl !RefUnwindSafe for UdtDeserializationErrorKind
impl Send for UdtDeserializationErrorKind
impl Sync for UdtDeserializationErrorKind
impl Unpin for UdtDeserializationErrorKind
impl !UnwindSafe for UdtDeserializationErrorKind
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
)