1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/// <https://developers.google.com/docs/api/reference/rest/v1/documents#contentdirection>
#[derive(
    Clone,
    Debug,
    Default,
    Eq,
    Hash,
    Ord,
    PartialEq,
    PartialOrd,
    serde::Deserialize,
    serde::Serialize,
)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ContentDirection {
    #[allow(clippy::enum_variant_names)]
    #[default]
    ContentDirectionUnspecified,
    LeftToRight,
    RightToLeft,
}

#[cfg(test)]
mod tests {
    use crate::tests::test_serde;

    use super::*;

    #[test]
    fn test() -> anyhow::Result<()> {
        for (s, v) in [
            (
                r#""CONTENT_DIRECTION_UNSPECIFIED""#,
                ContentDirection::ContentDirectionUnspecified,
            ),
            (r#""LEFT_TO_RIGHT""#, ContentDirection::LeftToRight),
            (r#""RIGHT_TO_LEFT""#, ContentDirection::RightToLeft),
        ] {
            test_serde(s, v)?;
        }
        Ok(())
    }
}