pub enum SpecialValue {
Infinity,
NegInfinity,
NaN,
}Expand description
Special decimal values (IEEE 754 / PostgreSQL compatible)
Variants§
Trait Implementations§
Source§impl Clone for SpecialValue
impl Clone for SpecialValue
Source§fn clone(&self) -> SpecialValue
fn clone(&self) -> SpecialValue
Returns a duplicate 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 SpecialValue
impl Debug for SpecialValue
Source§impl PartialEq for SpecialValue
impl PartialEq for SpecialValue
impl Copy for SpecialValue
impl Eq for SpecialValue
impl StructuralPartialEq for SpecialValue
Auto Trait Implementations§
impl Freeze for SpecialValue
impl RefUnwindSafe for SpecialValue
impl Send for SpecialValue
impl Sync for SpecialValue
impl Unpin for SpecialValue
impl UnwindSafe for SpecialValue
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