pub trait RecordDigest: OutputSizeUser {
    // Required methods
    fn digest(batch: &RecordBatch) -> Output<Self>;
    fn new(schema: &Schema) -> Self;
    fn update(&mut self, batch: &RecordBatch);
    fn finalize(self) -> Output<Self>;
}

Required Methods§

source

fn digest(batch: &RecordBatch) -> Output<Self>

source

fn new(schema: &Schema) -> Self

source

fn update(&mut self, batch: &RecordBatch)

source

fn finalize(self) -> Output<Self>

Implementors§