(p: &[u8])
| 471 | /// See <https://github.com/apache/arrow-rs/issues/6033> for more discussion on this. |
| 472 | impl From<&[u8]> for Buffer { |
| 473 | fn from(p: &[u8]) -> Self { |
| 474 | Self::from_slice_ref(p) |
| 475 | } |
| 476 | } |
| 477 | |
| 478 | impl<const N: usize> From<[u8; N]> for Buffer { |
nothing calls this directly
no test coverage detected