africa 0.5.0

A Rust crate providing enums and conversions for African countries and their subregions, analogous to the Europe crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused_variables)]

crate::ix!();

error_tree!{

    #[derive(PartialEq)]
    pub enum AfricaRegionConversionError {
        NotAfrican        { country: Country },
        UnsupportedRegion { region: AfricaRegion },
    }
}