| Crates.io | type-sig |
| lib.rs | type-sig |
| version | 0.1.4 |
| created_at | 2024-12-27 13:38:35.912603+00 |
| updated_at | 2024-12-27 17:28:05.444691+00 |
| description | Ever needed to inspect types more precisely? Then this crate is for you! |
| homepage | |
| repository | https://github.com/ay0ks/type-sig |
| max_upload_size | |
| id | 1496410 |
| size | 5,099 |
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", .. }] }