bucky-raw-codec-derive 0.1.0

Bucky raw codec derive macros
Documentation
pub mod ast;
pub mod attr;

mod ctxt;
pub use self::ctxt::Ctxt;

mod case;
mod symbol;

use syn::Type;

#[derive(Copy, Clone)]
pub enum Derive {
    RawEncode,
    RawDecode,
}

pub fn ungroup(mut ty: &Type) -> &Type {
    while let Type::Group(group) = ty {
        ty = &group.elem;
    }
    ty
}