otspec_macros 0.1.0

Procmacro library for reading/writing OpenType data structures
Documentation
pub mod ast;
pub mod attr;

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

mod receiver;
pub use self::receiver::replace_receiver;

mod respan;
mod symbol;

use syn::Type;

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

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