#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct ForwardFill {
#[builder(custom(type = super::FillLimit, convert = Box::new))]
#[serde(rename = "limit")]
limit: Box<super::FillLimit>,
}
impl ForwardFill {
#[inline]
pub fn new(limit: super::FillLimit) -> Self {
Self::builder().limit(limit).build()
}
#[inline]
pub fn limit(&self) -> &super::FillLimit {
&*self.limit
}
}