(&self, t: DisplayFormatType, f: &mut fmt::Formatter<'_>)
| 349 | |
| 350 | impl DisplayAs for ArrowFileSink { |
| 351 | fn fmt_as(&self, t: DisplayFormatType, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 352 | match t { |
| 353 | DisplayFormatType::Default | DisplayFormatType::Verbose => { |
| 354 | write!(f, "ArrowFileSink(file_groups=",)?; |
| 355 | FileGroupDisplay(&self.config.file_group).fmt_as(t, f)?; |
| 356 | write!(f, ")") |
| 357 | } |
| 358 | DisplayFormatType::TreeRender => { |
| 359 | writeln!(f, "format: arrow")?; |
| 360 | write!(f, "file={}", &self.config.original_url) |
| 361 | } |
| 362 | } |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | #[async_trait] |
nothing calls this directly
no test coverage detected