nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// The value at the specified percentile.
#[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 Percentile {
    #[builder(custom(type = super::DoubleConstant, convert = Box::new))]
    #[serde(rename = "percentile")]
    percentile: Box<super::DoubleConstant>,
}
impl Percentile {
    /// 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]. E.g. 0.5 for median, 0.95 for p95.
    #[inline]
    pub fn percentile(&self) -> &super::DoubleConstant {
        &*self.percentile
    }
}