docx-rs 0.4.20

A .docx file writer with Rust/WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum XmlVersion {
    Version10,
}

impl XmlVersion {
    pub(crate) fn as_str(self) -> &'static str {
        match self {
            XmlVersion::Version10 => "1.0",
        }
    }
}