#[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 Duration {
#[serde(rename = "unit")]
unit: super::TemporalUnit,
#[serde(rename = "count")]
count: i32,
}
impl Duration {
#[inline]
pub fn new(unit: super::TemporalUnit, count: i32) -> Self {
Self::builder().unit(unit).count(count).build()
}
#[inline]
pub fn unit(&self) -> &super::TemporalUnit {
&self.unit
}
#[inline]
pub fn count(&self) -> i32 {
self.count
}
}