Return true if this value is [`TimeValue`]
(&self)
| 418 | |
| 419 | /// Return true if this value is [`TimeValue`] |
| 420 | pub fn is_time(&self) -> bool { |
| 421 | self.as_any().downcast_ref::<TimeValue>().is_some() |
| 422 | } |
| 423 | |
| 424 | /// Return List of [`String`] represent the inner value of [`DateValue`] |
| 425 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected