Downcast this to a [`BinaryViewArray`] panicking if not possible
(&self)
| 894 | |
| 895 | /// Downcast this to a [`BinaryViewArray`] panicking if not possible |
| 896 | fn as_binary_view(&self) -> &BinaryViewArray { |
| 897 | self.as_byte_view_opt().expect("binary view array") |
| 898 | } |
| 899 | |
| 900 | /// Downcast this to a [`GenericByteViewArray`] returning `None` if not possible |
| 901 | fn as_byte_view_opt<T: ByteViewType>(&self) -> Option<&GenericByteViewArray<T>>; |