pub fn prop_get_mandatory<'a, T: 'static>(
    map: &'a PropMap,
    key: &str
) -> Result<&'a T, Box<dyn Error>>
Expand description

Like prop_get_optional(), but eliminates the inner Option by turning missing keys into errors.