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
pub struct ReferenceRelationship {
    //container: Rc<Cell<crate::packaging::part::Container>>,
    id: String,
    is_external: bool,
    relationship_type: String,
    uri: url::Url,
}

impl ReferenceRelationship {
    fn is_external(&self) -> bool {
        self.is_external
    }
}