type-sig-proc-macro 0.1.4

type-sig: Internal crate that defines the procedural macro, don't use this directly.
Documentation

Crates.io Version docs.rs This crate allows you to get a recursive type signature of a provided type.

Example:

type_sig!(u8) // TypeSignature { name: "u8", id: TypeId(..), .. }
type_sig!(*const *mut u8) // TypeSignature { name: "*const *mut u8", .., children: [TypeSignature { name: "*mut u8", .. }] }