oox 0.1.0

Open Office XML file format deserializer
Documentation
1
2
3
4
5
6
7
8
9
10
pub trait Update {
    fn update_with(self, other: Self) -> Self;
}

pub fn update_options<T: Update>(lhs: Option<T>, rhs: Option<T>) -> Option<T> {
    match (lhs, rhs) {
        (Some(lhs), Some(rhs)) => Some(lhs.update_with(rhs)),
        (lhs, rhs) => rhs.or(lhs),
    }
}