Return true if this value is [`DateValue`]
(&self)
| 404 | |
| 405 | /// Return true if this value is [`DateValue`] |
| 406 | pub fn is_date(&self) -> bool { |
| 407 | self.as_any().downcast_ref::<DateValue>().is_some() |
| 408 | } |
| 409 | |
| 410 | /// Return List of [`i64`] represent the inner value of [`DateValue`] |
| 411 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected