pub enum SqlLiteralError {
FloatNotFinite,
}Expand description
Errors that occur when serializing a SQL Server literal.
Variants§
FloatNotFinite
The floating-point value is not finite (NaN or infinity).
Trait Implementations§
Source§impl Debug for SqlLiteralError
impl Debug for SqlLiteralError
Source§impl Display for SqlLiteralError
impl Display for SqlLiteralError
Source§impl Error for SqlLiteralError
impl Error for SqlLiteralError
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 SqlLiteralError
impl RefUnwindSafe for SqlLiteralError
impl Send for SqlLiteralError
impl Sync for SqlLiteralError
impl Unpin for SqlLiteralError
impl UnwindSafe for SqlLiteralError
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