File: data_binding.rs

package info (click to toggle)
rust-docx-rs 0.4.18-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,072 kB
  • sloc: xml: 194; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use docx_rs::*;

pub fn main() -> Result<(), DocxError> {
    let path = std::path::Path::new("./output/data_binding.docx");
    let file = std::fs::File::create(path).unwrap();
    Docx::new()
        .add_paragraph(
            Paragraph::new()
                .add_structured_data_tag(
                    StructuredDataTag::new().data_binding(DataBinding::new().xpath("/root/item1")),
                )
                .add_structured_data_tag(
                    StructuredDataTag::new().data_binding(DataBinding::new().xpath("/root/item2")),
                ),
        )
        .add_custom_item(
            "06AC5857-5C65-A94A-BCEC-37356A209BC3",
            "<root><item1>Hello</item1><item2> World!</item2></root>",
        )
        .build()
        .pack(file)?;
    Ok(())
}