Downcast this to a [`StringViewArray`] panicking if not possible
(&self)
| 884 | |
| 885 | /// Downcast this to a [`StringViewArray`] panicking if not possible |
| 886 | fn as_string_view(&self) -> &StringViewArray { |
| 887 | self.as_byte_view_opt().expect("string view array") |
| 888 | } |
| 889 | |
| 890 | /// Downcast this to a [`BinaryViewArray`] returning `None` if not possible |
| 891 | fn as_binary_view_opt(&self) -> Option<&BinaryViewArray> { |