#[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 InvalidLiteralRange {
#[builder(
default,
custom(
type = impl
Into<Option<super::super::super::super::super::objects::api::Timestamp>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "start", skip_serializing_if = "Option::is_none", default)]
start: Option<Box<super::super::super::super::super::objects::api::Timestamp>>,
#[builder(
default,
custom(
type = impl
Into<Option<super::super::super::super::super::objects::api::Timestamp>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "end", skip_serializing_if = "Option::is_none", default)]
end: Option<Box<super::super::super::super::super::objects::api::Timestamp>>,
}
impl InvalidLiteralRange {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn start(
&self,
) -> Option<&super::super::super::super::super::objects::api::Timestamp> {
self.start.as_ref().map(|o| &**o)
}
#[inline]
pub fn end(
&self,
) -> Option<&super::super::super::super::super::objects::api::Timestamp> {
self.end.as_ref().map(|o| &**o)
}
}
impl conjure_error::ErrorType for InvalidLiteralRange {
#[inline]
fn code() -> conjure_error::ErrorCode {
conjure_error::ErrorCode::InvalidArgument
}
#[inline]
fn name() -> &'static str {
"Compute:InvalidLiteralRange"
}
#[inline]
fn safe_args() -> &'static [&'static str] {
&["end", "start"]
}
}