pub enum ValueConvertError {
UnexpectedNullValue(&'static str),
UnexpectedType {
expected: &'static str,
got: &'static str,
},
ValueOutOfRange {
expected: &'static str,
},
}
Expand description
Error type that represents different problems when converting column values to specific types.
Variants§
Trait Implementations§
Source§impl Debug for ValueConvertError
impl Debug for ValueConvertError
Source§impl Display for ValueConvertError
impl Display for ValueConvertError
Source§impl Error for ValueConvertError
impl Error for ValueConvertError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for ValueConvertError
impl RefUnwindSafe for ValueConvertError
impl Send for ValueConvertError
impl Sync for ValueConvertError
impl Unpin for ValueConvertError
impl UnwindSafe for ValueConvertError
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