Downcasts this to a [`AnyDictionaryArray`] panicking if not possible
(&self)
| 984 | |
| 985 | /// Downcasts this to a [`AnyDictionaryArray`] panicking if not possible |
| 986 | fn as_any_dictionary(&self) -> &dyn AnyDictionaryArray { |
| 987 | self.as_any_dictionary_opt().expect("any dictionary array") |
| 988 | } |
| 989 | |
| 990 | /// Downcasts this to a [`AnyRunEndArray`] returning `None` if not possible |
| 991 | fn as_any_ree_opt(&self) -> Option<&dyn AnyRunEndArray>; |
no test coverage detected