Return true if this value is [`DateTimeValue`]
(&self)
| 432 | |
| 433 | /// Return true if this value is [`DateTimeValue`] |
| 434 | pub fn is_date_time(&self) -> bool { |
| 435 | self.as_any().downcast_ref::<DateTimeValue>().is_some() |
| 436 | } |
| 437 | |
| 438 | /// Return List of [`i64`] represent the value of [`DateTimeValue`] |
| 439 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected