Skip to main content

TablePageSink

Trait TablePageSink 

Source
pub trait TablePageSink {
    // Required method
    fn page(&mut self, page: TablePage) -> Result<()>;
}
Expand description

Streaming page consumer.

Required Methods§

Source

fn page(&mut self, page: TablePage) -> Result<()>

Accepts one complete bounded page.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§