ooxml 0.1.1

An Office OpenXML parser writen in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::packaging::part::pair::*;
use crate::packaging::relationship::*;

pub trait OpenXmlPartContainer {
    fn data_part_reference_relationships(&self) -> DataPartReferenceRelationships {
        unimplemented!()
    }
    fn external_relationships(&self) -> ExternalRelationships {
        unimplemented!()
    }
    fn hyperlink_relationships(&self) -> HyperlinkRelationships {
        unimplemented!()
    }
    fn parts(&self) -> PartPairs {
        unimplemented!()
    }
}