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
use serde::{Serialize, Serializer};

use crate::documents::BuildXML;
use crate::types::*;
use crate::xml_builder::*;

#[derive(Debug, Clone, PartialEq)]
pub struct TableLayout {
    layout_type: TableLayoutType,
}

impl TableLayout {
    pub fn new(t: TableLayoutType) -> TableLayout {
        TableLayout {
            layout_type: t,
        }
    }
}

impl BuildXML for TableLayout {
    fn build(&self) -> Vec<u8> {
        let b = XMLBuilder::new();
        b.table_layout(&self.layout_type.to_string()).build()
    }
}

impl Serialize for TableLayout {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        serializer.serialize_str(&self.layout_type.to_string())
    }
}