1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct ReferenceRelationship {
    //container: Rc<Cell<crate::packaging::part::Container>>,
    pub id: String,
    pub is_external: bool,
    pub relationship_type: String,
    pub uri: url::Url,
}

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