(&self, f: &mut Formatter<'_>)
| 46 | |
| 47 | impl Debug for CopyTo { |
| 48 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { |
| 49 | f.debug_struct("CopyTo") |
| 50 | .field("input", &self.input) |
| 51 | .field("output_url", &self.output_url) |
| 52 | .field("partition_by", &self.partition_by) |
| 53 | .field("file_type", &"...") |
| 54 | .field("options", &self.options) |
| 55 | .field("output_schema", &self.output_schema) |
| 56 | .finish_non_exhaustive() |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // Implement PartialEq manually |