export_csv_to_writer_with_projections

Function export_csv_to_writer_with_projections 

Source
pub fn export_csv_to_writer_with_projections<P, W, I, SP>(
    table: &Table<P>,
    writer: W,
    projections: I,
    filter_expr: &Expr<'_, FieldId>,
    options: &CsvWriteOptions,
) -> Result<()>
where P: Pager<Blob = EntryHandle> + Send + Sync, W: Write, I: IntoIterator<Item = SP>, SP: Into<ScanProjection>,
Expand description

Export a projected table scan into an arbitrary writer.