pub trait TokenProfile: Send + Sync {
// Required methods
fn id(&self) -> &str;
fn fingerprint(&self) -> &str;
fn count_batch(&self, values: &[String]) -> Result<Vec<usize>, CoreError>;
}Expand description
Combines deterministic tokenization with provider envelope accounting.