Downcast this to a [`GenericBinaryArray`] returning `None` if not possible
(&self)
| 869 | |
| 870 | /// Downcast this to a [`GenericBinaryArray`] returning `None` if not possible |
| 871 | fn as_binary_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericBinaryArray<O>> { |
| 872 | self.as_bytes_opt() |
| 873 | } |
| 874 | |
| 875 | /// Downcast this to a [`GenericBinaryArray`] panicking if not possible |
| 876 | fn as_binary<O: OffsetSizeTrait>(&self) -> &GenericBinaryArray<O> { |
nothing calls this directly
no test coverage detected