korean_numbers 0.5.3

This parses a string of integers into hangul. Examples: 90,000 maps to 구만. 83,000,000 maps to 팔천삼백만. Currently only Sino-Korean parsing is supported.
Documentation
pub enum Place {
    Tens,
    Hundreds,
    Thousands
}

impl Place {
    pub fn from_usize(i: usize) -> Option<Place> {
        match i {
            1 => Some(Place::Tens),
            2 => Some(Place::Hundreds),
            3 => Some(Place::Thousands),
            _ => None,
        }
    }

    pub fn to_str(&self) -> &str {
        match self {
            &Place::Tens => "",
            &Place::Hundreds => "",
            &Place::Thousands => "",
        }
    }
}