Skip to main content

office_rs/docx/
document.rs

1pub struct Document {}
2
3impl Document {
4    pub fn new() -> Self {
5        Self {}
6    }
7
8    pub fn open(_path: &str) -> Self {
9        Self {}
10    }
11}