pub enum TypeParseError {
InvalidDate,
InvalidDecimal,
InvalidDuration,
InvalidIntBig,
InvalidTimestamp,
}Expand description
Compact scalar parsing failure.
Variants§
InvalidDate
Date text is invalid.
InvalidDecimal
Decimal text is invalid.
InvalidDuration
Duration text is invalid.
InvalidIntBig
Signed big-integer text is invalid.
InvalidTimestamp
Timestamp text is invalid.
Trait Implementations§
Source§impl Clone for TypeParseError
impl Clone for TypeParseError
Source§fn clone(&self) -> TypeParseError
fn clone(&self) -> TypeParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TypeParseError
Source§impl Debug for TypeParseError
impl Debug for TypeParseError
Source§impl Display for TypeParseError
impl Display for TypeParseError
impl Eq for TypeParseError
Source§impl PartialEq for TypeParseError
impl PartialEq for TypeParseError
impl StructuralPartialEq for TypeParseError
Auto Trait Implementations§
impl Freeze for TypeParseError
impl RefUnwindSafe for TypeParseError
impl Send for TypeParseError
impl Sync for TypeParseError
impl Unpin for TypeParseError
impl UnsafeUnpin for TypeParseError
impl UnwindSafe for TypeParseError
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