usecrate::data_manipulation::anonymizable::{Anonymizable, QuasiIdentifierTypes};/// This trait lets you implement a custom noising function to add ε-differential privacy to
/// a struct that implements `Anonymizable`
/// DiffPriv already supports Laplace noise as a possible noiser
pubtraitNoiser: Default + Clone + Sync {fnadd_noise<M: Anonymizable>(&mutself, value:&M)->Vec<QuasiIdentifierTypes>;}