Downcast this to a [`GenericStringArray`] returning `None` if not possible
(&self)
| 859 | |
| 860 | /// Downcast this to a [`GenericStringArray`] returning `None` if not possible |
| 861 | fn as_string_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericStringArray<O>> { |
| 862 | self.as_bytes_opt() |
| 863 | } |
| 864 | |
| 865 | /// Downcast this to a [`GenericStringArray`] panicking if not possible |
| 866 | fn as_string<O: OffsetSizeTrait>(&self) -> &GenericStringArray<O> { |
nothing calls this directly
no test coverage detected