type-sig-type 0.1.4

type-sig: Internal crate that defines the TypeSignature structure, don't use this directly.
Documentation
1
2
3
4
5
6
7
8
[![Crates.io Version](https://img.shields.io/crates/v/type-sig)](https://crates.io/crates/type-sig) [![docs.rs](https://img.shields.io/docsrs/type-sig)](https://docs.rs/type-sig/)
This crate allows you to get a recursive type signature of a provided type.

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