Struct scylla_cql::types::deserialize::row::BuiltinTypeCheckError
source · pub struct BuiltinTypeCheckError {
pub rust_name: &'static str,
pub cql_types: Vec<ColumnType<'static>>,
pub kind: BuiltinTypeCheckErrorKind,
}
Expand description
Failed to type check incoming result column types again given Rust type, one of the types having support built into the driver.
Fields§
§rust_name: &'static str
Name of the Rust type used to represent the values.
cql_types: Vec<ColumnType<'static>>
The CQL types of the values that the Rust type was being deserialized from.
kind: BuiltinTypeCheckErrorKind
Detailed information about the failure.
Trait Implementations§
source§impl Clone for BuiltinTypeCheckError
impl Clone for BuiltinTypeCheckError
source§fn clone(&self) -> BuiltinTypeCheckError
fn clone(&self) -> BuiltinTypeCheckError
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 BuiltinTypeCheckError
impl Debug for BuiltinTypeCheckError
source§impl Display for BuiltinTypeCheckError
impl Display for BuiltinTypeCheckError
source§impl Error for BuiltinTypeCheckError
impl Error for BuiltinTypeCheckError
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()
Auto Trait Implementations§
impl Freeze for BuiltinTypeCheckError
impl !RefUnwindSafe for BuiltinTypeCheckError
impl Send for BuiltinTypeCheckError
impl Sync for BuiltinTypeCheckError
impl Unpin for BuiltinTypeCheckError
impl !UnwindSafe for BuiltinTypeCheckError
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
)