pub struct UnsupportedSqlDataType(/* private fields */);
Expand description
This error can be returned if database provided column of type that currently cannot be mapped to Value
type.
Trait Implementations§
Source§impl Debug for UnsupportedSqlDataType
impl Debug for UnsupportedSqlDataType
Source§impl Display for UnsupportedSqlDataType
impl Display for UnsupportedSqlDataType
Source§impl Error for UnsupportedSqlDataType
impl Error for UnsupportedSqlDataType
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()
Source§impl From<UnsupportedSqlDataType> for QueryError
impl From<UnsupportedSqlDataType> for QueryError
Source§fn from(err: UnsupportedSqlDataType) -> QueryError
fn from(err: UnsupportedSqlDataType) -> QueryError
Converts to this type from the input type.
Source§impl From<UnsupportedSqlDataType> for ResultSetError
impl From<UnsupportedSqlDataType> for ResultSetError
Source§fn from(err: UnsupportedSqlDataType) -> ResultSetError
fn from(err: UnsupportedSqlDataType) -> ResultSetError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnsupportedSqlDataType
impl RefUnwindSafe for UnsupportedSqlDataType
impl Send for UnsupportedSqlDataType
impl Sync for UnsupportedSqlDataType
impl Unpin for UnsupportedSqlDataType
impl UnwindSafe for UnsupportedSqlDataType
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