(&mut self, item: &Row)
| 621 | impl<BC: Push<u64>> Push<&Row> for Rows<BC> { |
| 622 | #[inline(always)] |
| 623 | fn push(&mut self, item: &Row) { |
| 624 | self.values.extend_from_slice(item.data.as_slice()); |
| 625 | self.bounds.push(u64::cast_from(self.values.len())); |
| 626 | } |
| 627 | } |
| 628 | impl<BC: for<'a> Push<&'a u64>> Push<&RowRef> for Rows<BC> { |
| 629 | #[inline(always)] |