pub trait BootstrapBackend {
// Required method
fn resample_and_estimate(&self, data: &[u8], b: usize) -> Vec<f64>;
}Expand description
Pluggable backend for parametric bootstrap resampling of ε-machine metrics.
Implementors must be stateless (or internally synchronised) so that
resample_and_estimate can be called from multiple async tasks.