jep106 0.2.8

A pollable collection of all JEP106 manufacturer codes.
Documentation
extern crate jep106;

#[test]
fn print_unknown_test() {
    let none = jep106::JEP106Code::new(0x08, 0xFF);
    assert_eq!(None, none.get());
    assert_eq!("JEP106Code({ cc: 0x08, id: 0xff } => None)", format!("{:?}", none));
    assert_eq!("Unknown Manufacturer Code", format!("{}", none));
}