pub trait HasBatchInfo<T> {
// Required methods
fn participants(&self) -> Vec<String>;
fn extra_data(&self) -> Vec<Value>;
fn record(&self) -> Vec<T>;
fn domain(&self) -> PseudonymizationDomain;
}Required Methods§
fn participants(&self) -> Vec<String>
fn extra_data(&self) -> Vec<Value>
fn record(&self) -> Vec<T>
fn domain(&self) -> PseudonymizationDomain
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".