#[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 Unit {
#[builder(default, into)]
#[serde(rename = "name", skip_serializing_if = "Option::is_none", default)]
name: Option<String>,
#[builder(into)]
#[serde(rename = "symbol")]
symbol: String,
}
impl Unit {
#[inline]
pub fn new(symbol: impl Into<String>) -> Self {
Self::builder().symbol(symbol).build()
}
#[deprecated(note = "use the units service for additional display metadata")]
#[inline]
pub fn name(&self) -> Option<&str> {
self.name.as_ref().map(|o| &**o)
}
#[inline]
pub fn symbol(&self) -> &str {
&*self.symbol
}
}