pub trait WangLandauHist<Hist>: WangLandau {
// Required method
fn hist(&self) -> &Hist;
}
Expand description
§trait to request the current histogram from a WangLandau simulation
- Note: The histogram will likely be reset multiple times during a simulation
- See also WangLandauEEH
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.