enum-as-inner 0.3.3

A proc-macro for deriving inner field accessor functions on enums.
Documentation
use enum_as_inner::EnumAsInner;

#[derive(Debug, EnumAsInner)]
enum MixedCaseVariants {
    XMLIsNotCool,
    #[allow(non_camel_case_types)]
    Rust_IsCoolThough(u32),
    YMCA {
        named: i16,
    },
}

#[test]
fn test_xml_unit() {
    let mixed = MixedCaseVariants::XMLIsNotCool;

    assert!(mixed.as_xml_is_not_cool().is_some());
    assert!(mixed.as_rust_is_cool_though().is_none());
    assert!(mixed.as_ymca().is_none());

    mixed
        .as_xml_is_not_cool()
        .expect("should have been some unit");
}

#[test]
fn test_rust_unnamed() {
    let mixed = MixedCaseVariants::Rust_IsCoolThough(42);

    assert!(mixed.as_xml_is_not_cool().is_none());
    assert!(mixed.as_rust_is_cool_though().is_some());
    assert!(mixed.as_ymca().is_none());

    assert_eq!(*mixed.as_rust_is_cool_though().unwrap(), 42);
    assert_eq!(mixed.into_rust_is_cool_though().unwrap(), 42);
}

#[test]
fn test_ymca_named() {
    let mixed = MixedCaseVariants::YMCA { named: -32_768 };

    assert!(mixed.as_xml_is_not_cool().is_none());
    assert!(mixed.as_rust_is_cool_though().is_none());
    assert!(mixed.as_ymca().is_some());

    assert_eq!(*mixed.as_ymca().unwrap(), (-32_768));
    assert_eq!(mixed.into_ymca().unwrap(), (-32_768));
}