pub trait RecordBatchIterator: Send {
// Required methods
fn get_schema(&self) -> (RecordBatch, &[String]);
fn prepare(&mut self);
fn next_batch(&mut self) -> Option<RecordBatch>;
}Required Methods§
fn get_schema(&self) -> (RecordBatch, &[String])
fn prepare(&mut self)
fn next_batch(&mut self) -> Option<RecordBatch>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".