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