nominal-api-conjure 0.1452.0

Conjure HTTP 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 ShapeVizDefinitionV1 {
    #[builder(default, into)]
    #[serde(rename = "title", skip_serializing_if = "Option::is_none", default)]
    title: Option<String>,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::Shape>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(rename = "shape", skip_serializing_if = "Option::is_none", default)]
    shape: Option<Box<super::Shape>>,
    #[builder(default, into)]
    #[serde(rename = "fillColor", skip_serializing_if = "Option::is_none", default)]
    fill_color: Option<super::super::super::api::HexColor>,
    #[builder(default, into)]
    #[serde(rename = "text", skip_serializing_if = "Option::is_none", default)]
    text: Option<String>,
}
impl ShapeVizDefinitionV1 {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    #[inline]
    pub fn title(&self) -> Option<&str> {
        self.title.as_ref().map(|o| &**o)
    }
    /// The shape to render, with shape-specific configuration.
    #[inline]
    pub fn shape(&self) -> Option<&super::Shape> {
        self.shape.as_ref().map(|o| &**o)
    }
    #[inline]
    pub fn fill_color(&self) -> Option<&super::super::super::api::HexColor> {
        self.fill_color.as_ref().map(|o| &*o)
    }
    /// Text rendered inside the shape. Absent means no text. The client
    /// picks the text color, and whether the shape needs an edge to stay
    /// visible, from the fill color and its own theme; neither is stored.
    #[inline]
    pub fn text(&self) -> Option<&str> {
        self.text.as_ref().map(|o| &**o)
    }
}