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

19 lines
314 B
Rust
Raw Normal View History

2019-11-13 09:08:25 +02:00
use crate::documents::BuildXML;
use crate::xml_builder::*;
#[derive(Debug, Clone)]
pub struct ItalicCs {}
impl ItalicCs {
pub fn new() -> ItalicCs {
ItalicCs {}
}
}
impl BuildXML for ItalicCs {
fn build(&self) -> Vec<u8> {
let b = XMLBuilder::new();
b.i_cs().build()
}
}