pub trait Framework {
type ErrorModels;
type Prior;
}Required Associated Types§
type ErrorModels
Sourcetype Prior
type Prior
The prior that seeds the algorithm.
For the non-parametric framework this is a Theta (a discrete prior
distribution that also carries the parameter space). For the parametric
framework it is the ParameterSpace of unbounded parameters.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".