nominal-api 0.1259.1

API bindings for the Nominal platform
Documentation
/// At each grid point, carries the most recent prior sample value forward.
/// The value is held only up to the configured `limit`; grid points with no prior sample
/// within that window are left empty.
#[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 {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(limit: super::FillLimit) -> Self {
        Self::builder().limit(limit).build()
    }
    #[inline]
    pub fn limit(&self) -> &super::FillLimit {
        &*self.limit
    }
}