pub trait DataBatchSource {
// Required methods
fn is_valid(&self) -> bool;
fn next(&mut self) -> Result<()>;
fn current_pk_id(&self) -> PkId;
fn current_key(&self) -> Option<&[u8]>;
fn current_data_batch(&self) -> DataBatch<'_>;
}
Expand description
Source that returns DataBatch.
Required Methods§
Sourcefn current_pk_id(&self) -> PkId
fn current_pk_id(&self) -> PkId
Sourcefn current_key(&self) -> Option<&[u8]>
fn current_key(&self) -> Option<&[u8]>
Returns the current primary key bytes or None if it doesn’t have primary key.
§Panics
If source is not valid.