(&self, f: &mut Formatter<'_>)
| 71 | |
| 72 | impl<T: ArrowNativeType> std::fmt::Debug for ScalarBuffer<T> { |
| 73 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 74 | f.debug_tuple("ScalarBuffer").field(&self.as_ref()).finish() |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | impl<T: ArrowNativeType> ScalarBuffer<T> { |