nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// References a named frame in `Context.frameReferences`.
#[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 FrameReference {
    #[builder(custom(type = super::StringConstant, convert = Box::new))]
    #[serde(rename = "name")]
    name: Box<super::StringConstant>,
}
impl FrameReference {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(name: super::StringConstant) -> Self {
        Self::builder().name(name).build()
    }
    /// Name of the frame reference to resolve from the context.
    #[inline]
    pub fn name(&self) -> &super::StringConstant {
        &*self.name
    }
}