(self, _target_type: &ArrowType)
| 56 | |
| 57 | impl IntoBuffer for Vec<bool> { |
| 58 | fn into_buffer(self, _target_type: &ArrowType) -> Buffer { |
| 59 | BooleanBuffer::from_iter(self).into_inner() |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | impl IntoBuffer for Vec<Int96> { |
no test coverage detected