(&self)
| 508 | |
| 509 | #[inline] |
| 510 | pub fn is_integer(&self) -> bool { |
| 511 | use NativeType::*; |
| 512 | matches!( |
| 513 | self, |
| 514 | UInt8 | UInt16 | UInt32 | UInt64 | Int8 | Int16 | Int32 | Int64 |
| 515 | ) |
| 516 | } |
| 517 | |
| 518 | #[inline] |
| 519 | pub fn is_timestamp(&self) -> bool { |
no outgoing calls
no test coverage detected