#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct CustomCurveResultDetails {
#[builder(default, map(key(type = String, into), value(type = f64)))]
#[serde(
rename = "parameters",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
#[derive_with(with = conjure_object::private::DoubleWrapper)]
parameters: std::collections::BTreeMap<String, f64>,
}
impl CustomCurveResultDetails {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn parameters(&self) -> &std::collections::BTreeMap<String, f64> {
&self.parameters
}
}