gedcom 0.1.0

A parser for GEDCOM files
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
macro_rules! fmt_optional_value {
    ($debug_struct: ident, $prop: literal, $val: expr) => {
        if let Some(value) = $val {
            $debug_struct.field($prop, value);
        } else {
            $debug_struct.field($prop, &"None");
        }
    };
}