#[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 Periodogram {
#[builder(custom(type = super::NumericSeries, convert = Box::new))]
#[serde(rename = "input")]
input: Box<super::NumericSeries>,
#[serde(rename = "method")]
method: super::PeriodogramMethod,
}
impl Periodogram {
#[inline]
pub fn new(input: super::NumericSeries, method: super::PeriodogramMethod) -> Self {
Self::builder().input(input).method(method).build()
}
#[inline]
pub fn input(&self) -> &super::NumericSeries {
&*self.input
}
#[inline]
pub fn method(&self) -> &super::PeriodogramMethod {
&self.method
}
}