(&mut self, iter: I)
| 2242 | /// be incomplete, but it will be safe to read datums from it. |
| 2243 | #[inline] |
| 2244 | pub fn try_extend<'a, I, E, D>(&mut self, iter: I) -> Result<(), E> |
| 2245 | where |
| 2246 | I: IntoIterator<Item = Result<D, E>>, |
| 2247 | D: Borrow<Datum<'a>>, |
| 2248 | { |
| 2249 | for datum in iter { |
| 2250 | push_datum(&mut self.row.data, *datum?.borrow()); |
| 2251 | } |
| 2252 | Ok(()) |
| 2253 | } |
| 2254 | |
| 2255 | /// Appends the datums of an entire `Row`. |
| 2256 | pub fn extend_by_row(&mut self, row: &Row) { |
no test coverage detected