Trait CurrentFileStatus

Source
pub trait CurrentFileStatus {
    // Required methods
    fn current_file_path(&self) -> String;
    fn current_row_num(&self) -> usize;
    fn current_written_size(&self) -> usize;
}
Expand description

The current file status of the Iceberg writer. This is implemented for writers that write a single file at a time.

Required Methods§

Source

fn current_file_path(&self) -> String

Get the current file path.

Source

fn current_row_num(&self) -> usize

Get the current file row number.

Source

fn current_written_size(&self) -> usize

Get the current file written size.

Implementors§