[][src]Struct wham::Config

pub struct Config {
    pub metadata_file: String,
    pub hist_min: Vec<f64>,
    pub hist_max: Vec<f64>,
    pub num_bins: Vec<usize>,
    pub dimens: usize,
    pub verbose: bool,
    pub tolerance: f64,
    pub max_iterations: usize,
    pub temperature: f64,
    pub cyclic: bool,
    pub output: String,
    pub bootstrap: usize,
    pub bootstrap_seed: u64,
    pub start: f64,
    pub end: f64,
}

Fields

metadata_file: Stringhist_min: Vec<f64>hist_max: Vec<f64>num_bins: Vec<usize>dimens: usizeverbose: booltolerance: f64max_iterations: usizetemperature: f64cyclic: booloutput: Stringbootstrap: usizebootstrap_seed: u64start: f64end: f64

Trait Implementations

impl Debug for Config[src]

impl Display for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.