Downcast this to a [`GenericBinaryArray`] panicking if not possible
(&self)
| 874 | |
| 875 | /// Downcast this to a [`GenericBinaryArray`] panicking if not possible |
| 876 | fn as_binary<O: OffsetSizeTrait>(&self) -> &GenericBinaryArray<O> { |
| 877 | self.as_bytes_opt().expect("binary array") |
| 878 | } |
| 879 | |
| 880 | /// Downcast this to a [`StringViewArray`] returning `None` if not possible |
| 881 | fn as_string_view_opt(&self) -> Option<&StringViewArray> { |
no test coverage detected