(&mut self, iter: T)
| 661 | |
| 662 | impl Extend<CrdtConflict> for CrdtConflictTracker { |
| 663 | fn extend<T: IntoIterator<Item = CrdtConflict>>(&mut self, iter: T) { |
| 664 | self.conflicts.extend(iter); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | impl FromIterator<CrdtConflict> for CrdtConflictTracker { |
no outgoing calls