nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Query the data backing a dataset
#[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 Dataset {
    #[builder(custom(type = super::StringConstant, convert = Box::new))]
    #[serde(rename = "rid")]
    rid: Box<super::StringConstant>,
}
impl Dataset {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(rid: super::StringConstant) -> Self {
        Self::builder().rid(rid).build()
    }
    /// Resource identifier of a dataset
    #[inline]
    pub fn rid(&self) -> &super::StringConstant {
        &*self.rid
    }
}