#[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 HistogramPlot {
#[serde(rename = "variableName")]
variable_name: super::super::super::channelvariables::api::ChannelVariableName,
#[builder(default, into)]
#[serde(rename = "enabled", skip_serializing_if = "Option::is_none", default)]
enabled: Option<bool>,
#[serde(rename = "color")]
color: super::super::super::api::HexColor,
}
impl HistogramPlot {
#[inline]
pub fn new(
variable_name: super::super::super::channelvariables::api::ChannelVariableName,
color: super::super::super::api::HexColor,
) -> Self {
Self::builder().variable_name(variable_name).color(color).build()
}
#[inline]
pub fn variable_name(
&self,
) -> &super::super::super::channelvariables::api::ChannelVariableName {
&self.variable_name
}
#[inline]
pub fn enabled(&self) -> Option<bool> {
self.enabled.as_ref().map(|o| *o)
}
#[inline]
pub fn color(&self) -> &super::super::super::api::HexColor {
&self.color
}
}