pub trait IcebergWriterBuilder<I = RecordBatch, O = Vec<DataFile>>:
Send
+ Sync
+ 'static {
type R: IcebergWriter<I, O>;
// Required method
fn build<'life0, 'async_trait>(
&'life0 self,
partition_key: Option<PartitionKey>,
) -> Pin<Box<dyn Future<Output = Result<Self::R>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
The builder for iceberg writer.
Required Associated Types§
Sourcetype R: IcebergWriter<I, O>
type R: IcebergWriter<I, O>
The associated writer type.