pub trait HasNextBatch {
    // Required method
    fn has_next_batch(&self) -> Option<(Vec<u8>, Vec<u8>)>;
}

Required Methods§

source

fn has_next_batch(&self) -> Option<(Vec<u8>, Vec<u8>)>

Implementors§