Trait iceberg::writer::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 iceberg writer. It implement for the writer which write a single file.

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§