Downcast this to a [`GenericByteViewArray`] panicking if not possible
(&self)
| 902 | |
| 903 | /// Downcast this to a [`GenericByteViewArray`] panicking if not possible |
| 904 | fn as_byte_view<T: ByteViewType>(&self) -> &GenericByteViewArray<T> { |
| 905 | self.as_byte_view_opt().expect("byte view array") |
| 906 | } |
| 907 | |
| 908 | /// Downcast this to a [`StructArray`] returning `None` if not possible |
| 909 | fn as_struct_opt(&self) -> Option<&StructArray>; |