pub enum Num {
Int(i64),
Float(f64),
}Expand description
An integer or a float, which is what INCREX counts in.
The two never mix inside one call. BYINT with a UBOUND that is not an
integer is an error on a real server, and it is an error here.
Variants§
Implementations§
Trait Implementations§
impl Copy for Num
impl StructuralPartialEq for Num
Auto Trait Implementations§
impl Freeze for Num
impl RefUnwindSafe for Num
impl Send for Num
impl Sync for Num
impl Unpin for Num
impl UnsafeUnpin for Num
impl UnwindSafe for Num
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