Return true if this value is [`TextValue`]
(&self)
| 343 | impl dyn Value { |
| 344 | /// Return true if this value is [`TextValue`] |
| 345 | pub fn is_text(&self) -> bool { |
| 346 | self.as_any().downcast_ref::<TextValue>().is_some() |
| 347 | } |
| 348 | |
| 349 | /// Return List of [`String`] represent the inner value of [`IntValue`] |
| 350 | /// or None if this type it's called from wrong [`Value`] |
no test coverage detected