#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith,
Copy
)]
#[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 PolynomialCurve {
#[serde(rename = "degree")]
degree: i32,
#[builder(default, into)]
#[serde(rename = "intercept", skip_serializing_if = "Option::is_none", default)]
#[derive_with(with = conjure_object::private::DoubleWrapper)]
intercept: Option<f64>,
}
impl PolynomialCurve {
#[inline]
pub fn new(degree: i32) -> Self {
Self::builder().degree(degree).build()
}
#[inline]
pub fn degree(&self) -> i32 {
self.degree
}
#[inline]
pub fn intercept(&self) -> Option<f64> {
self.intercept.as_ref().map(|o| *o)
}
}