[][src]Struct docx_rs::XMLDocx

pub struct XMLDocx {
    pub content_type: Vec<u8>,
    pub rels: Vec<u8>,
    pub doc_props: XMLDocProps,
    pub styles: Vec<u8>,
    pub document: Vec<u8>,
    pub comments: Vec<u8>,
    pub document_rels: Vec<u8>,
    pub settings: Vec<u8>,
    pub font_table: Vec<u8>,
    pub numberings: Vec<u8>,
}

Fields

content_type: Vec<u8>rels: Vec<u8>doc_props: XMLDocPropsstyles: Vec<u8>document: Vec<u8>comments: Vec<u8>document_rels: Vec<u8>settings: Vec<u8>font_table: Vec<u8>numberings: Vec<u8>

Methods

impl XMLDocx[src]

pub fn pack<W>(self, w: W) -> ZipResult<()> where
    W: Write + Seek
[src]

Trait Implementations

impl Debug for XMLDocx[src]

Auto Trait Implementations

impl RefUnwindSafe for XMLDocx

impl Send for XMLDocx

impl Sync for XMLDocx

impl Unpin for XMLDocx

impl UnwindSafe for XMLDocx

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.