type-sig-type 0.1.0

type-sig: Internal crate that defines the TypeSignature structure, don't use this directly.
Documentation
1
2
3
4
5
6
7
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", .. }] }
```