docx-rs/docx-core/src/documents/elements/tab.rs

19 lines
288 B
Rust

use crate::documents::BuildXML;
use crate::xml_builder::*;
#[derive(Debug, Clone)]
pub struct Tab {}
impl Tab {
pub fn new() -> Tab {
Tab {}
}
}
impl BuildXML for Tab {
fn build(&self) -> Vec<u8> {
let b = XMLBuilder::new();
b.tab().build()
}
}