#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub enum Orientation {
FrontToBack,
#[serde(rename = "BackToFront")]
BackToF,
TopToBottom,
BottomToTop,
LeftToRight,
RightToLeft,
}
#[allow(clippy::derivable_impls)]
impl Default for Orientation {
fn default() -> Orientation {
Orientation::FrontToBack
}
}
impl crate::Metadata<'static> for Orientation {
const JSON_SCHEMA: &'static str = "Resource.v1_5_11.json";
}