Enum nuts_rs::SampleStatValue
source · pub enum SampleStatValue {
Array(Box<[f64]>),
OptionArray(Option<Box<[f64]>>),
U64(u64),
I64(i64),
OptionI64(Option<i64>),
F64(f64),
OptionF64(Option<f64>),
Bool(bool),
String(String),
}
Variants§
Array(Box<[f64]>)
OptionArray(Option<Box<[f64]>>)
U64(u64)
I64(i64)
OptionI64(Option<i64>)
F64(f64)
OptionF64(Option<f64>)
Bool(bool)
String(String)
Trait Implementations§
source§impl Clone for SampleStatValue
impl Clone for SampleStatValue
source§fn clone(&self) -> SampleStatValue
fn clone(&self) -> SampleStatValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more