(self)
| 1598 | |
| 1599 | impl<T: IntoVtkUnstructuredGridPiece> IntoVtkDataSet for T { |
| 1600 | fn into_dataset(self) -> DataSet { |
| 1601 | DataSet::inline(self.into_unstructured_grid()) |
| 1602 | } |
| 1603 | } |
| 1604 | |
| 1605 | impl IntoVtkDataSet for DataSet { |
no test coverage detected