Downcast this to a [`GenericStringArray`] panicking if not possible
(&self)
| 864 | |
| 865 | /// Downcast this to a [`GenericStringArray`] panicking if not possible |
| 866 | fn as_string<O: OffsetSizeTrait>(&self) -> &GenericStringArray<O> { |
| 867 | self.as_bytes_opt().expect("string array") |
| 868 | } |
| 869 | |
| 870 | /// Downcast this to a [`GenericBinaryArray`] returning `None` if not possible |
| 871 | fn as_binary_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericBinaryArray<O>> { |
no test coverage detected