Downcast this to a [`BinaryViewArray`] returning `None` if not possible
(&self)
| 889 | |
| 890 | /// Downcast this to a [`BinaryViewArray`] returning `None` if not possible |
| 891 | fn as_binary_view_opt(&self) -> Option<&BinaryViewArray> { |
| 892 | self.as_byte_view_opt() |
| 893 | } |
| 894 | |
| 895 | /// Downcast this to a [`BinaryViewArray`] panicking if not possible |
| 896 | fn as_binary_view(&self) -> &BinaryViewArray { |
nothing calls this directly
no test coverage detected