asap_sketchlib 0.2.1

A high-performance sketching library for approximate stream processing
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

/// Standard row-by-row hashing mode for matrix-backed sketches.
#[derive(Clone, Copy, Debug, Default, Serialize, Deserialize)]
pub struct RegularPath;

/// Packed fast-path hashing mode for matrix-backed sketches.
#[derive(Clone, Copy, Debug, Default, Serialize, Deserialize)]
pub struct FastPath;