nominal-api-conjure 0.1297.0

Conjure HTTP API bindings for the Nominal platform
Documentation
#[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 NumericOutputPercentile {
    #[builder(custom(type = super::DoubleConstant, convert = Box::new))]
    #[serde(rename = "percentile")]
    percentile: Box<super::DoubleConstant>,
    #[builder(default, into)]
    #[serde(rename = "outputName", skip_serializing_if = "Option::is_none", default)]
    output_name: Option<String>,
}
impl NumericOutputPercentile {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(percentile: super::DoubleConstant) -> Self {
        Self::builder().percentile(percentile).build()
    }
    /// Percentile to compute, in range [0, 1].
    #[inline]
    pub fn percentile(&self) -> &super::DoubleConstant {
        &*self.percentile
    }
    /// Optional output column name. Defaults to pXX, e.g. p95 for 0.95.
    #[inline]
    pub fn output_name(&self) -> Option<&str> {
        self.output_name.as_ref().map(|o| &**o)
    }
}