docx-rs/docx-wasm/src/footer.rs

31 lines
584 B
Rust

use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[derive(Debug)]
pub struct Footer(docx_rs::Footer);
#[wasm_bindgen(js_name = createFooter)]
pub fn create_footer() -> Footer {
Footer(docx_rs::Footer::new())
}
impl Footer {
pub fn take(self) -> docx_rs::Footer {
self.0
}
}
#[wasm_bindgen]
impl Footer {
pub fn add_paragraph(mut self, p: Paragraph) -> Self {
self.0 = self.0.add_paragraph(p.take());
self
}
pub fn add_table(mut self, t: Table) -> Self {
self.0 = self.0.add_table(t.take());
self
}
}