sejong 0.1.5

Sejong Buffer is a buffer that can receive ASCII bytes different from keyboard and send out UTF-32 Hangul string. This buffer allows deletion by Jamo.
Documentation
use std::convert::TryFrom;

/// This is the intermediate representation of the Buffer input.
/// Its `TryFrom` implementations also act as input validators.
/// Any input that is successfully converted to `Byte` is a valid
/// modern Hangul Jamo.
#[derive(Clone, Copy, Debug)]
#[repr(u8)]
pub enum Byte {
    /// E
    TT = 0x45,
    /// O
    YAE = 0x4f,
    /// P
    YE,
    /// Q
    PP,
    /// R
    KK = 0x52,
    /// T
    SS = 0x54,
    /// W
    JJ = 0x57,
    /// a
    M = 0x61,
    /// b
    YU,
    /// c
    CH,
    /// d
    NG,
    /// e
    D,
    /// f
    R,
    /// g
    H,
    /// h
    O,
    /// i
    YA,
    /// j
    EO,
    /// k
    A,
    /// l
    I,
    /// m
    EU,
    /// n
    U,
    /// o
    AE,
    /// p
    E,
    /// q
    B,
    /// r
    G,
    /// s
    N,
    /// t
    S,
    /// u
    YEO,
    /// v
    P,
    /// w
    J,
    /// x
    T,
    /// y
    YO,
    /// z
    K = 0x7a,
}

impl TryFrom<u8> for Byte {
    type Error = u8;
    fn try_from(byte: u8) -> Result<Self, Self::Error> {
        match byte {
            0x45 | 0x4f | 0x50 | 0x51 | 0x52 | 0x54 | 0x57 | 0x61 | 0x62 | 0x63 | 0x64 | 0x65
            | 0x66 | 0x67 | 0x68 | 0x69 | 0x6a | 0x6b | 0x6c | 0x6d | 0x6e | 0x6f | 0x70 | 0x71
            | 0x72 | 0x73 | 0x74 | 0x75 | 0x76 | 0x77 | 0x78 | 0x79 | 0x7a => unsafe {
                Ok(std::mem::transmute(byte))
            },
            _ => Err(byte),
        }
    }
}

impl TryFrom<char> for Byte {
    type Error = char;
    fn try_from(c: char) -> Result<Self, Self::Error> {
        if c.len_utf8() != 1 {
            return Err(c);
        }
        let mut b = [0u8];
        c.encode_utf8(&mut b);
        match Byte::try_from(b[0]) {
            Ok(byte) => Ok(byte),
            _ => Err(c),
        }
    }
}

impl Byte {
    pub fn is_consonant(&self) -> bool {
        match self {
            Self::TT
            | Self::PP
            | Self::KK
            | Self::SS
            | Self::JJ
            | Self::M
            | Self::CH
            | Self::NG
            | Self::D
            | Self::R
            | Self::H
            | Self::B
            | Self::G
            | Self::N
            | Self::S
            | Self::P
            | Self::J
            | Self::T
            | Self::K => true,
            _ => false,
        }
    }
    pub fn is_vowel(&self) -> bool {
        !self.is_consonant()
    }
}