nominal-api 0.1241.0

API bindings for the Nominal platform
Documentation
#[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 NominalLocatorTemplate {
    #[serde(rename = "channel")]
    channel: super::super::super::super::api::Channel,
    #[serde(rename = "type")]
    type_: super::super::super::super::storage::series::api::NominalDataType,
}
impl NominalLocatorTemplate {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        channel: super::super::super::super::api::Channel,
        type_: super::super::super::super::storage::series::api::NominalDataType,
    ) -> Self {
        Self::builder().channel(channel).type_(type_).build()
    }
    #[inline]
    pub fn channel(&self) -> &super::super::super::super::api::Channel {
        &self.channel
    }
    #[inline]
    pub fn type_(
        &self,
    ) -> &super::super::super::super::storage::series::api::NominalDataType {
        &self.type_
    }
}