| Crates.io | type-sig-type |
| lib.rs | type-sig-type |
| version | 0.1.4 |
| created_at | 2024-12-27 13:34:53.459601+00 |
| updated_at | 2024-12-27 17:26:18.448447+00 |
| description | type-sig: Internal crate that defines the TypeSignature structure, don't use this directly. |
| homepage | |
| repository | https://github.com/ay0ks/type-sig |
| max_upload_size | |
| id | 1496408 |
| size | 3,655 |
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", .. }] }