#signature #dont #internal #defines #structure #type-signature #type-sig

type-sig-type

type-sig: Internal crate that defines the TypeSignature structure, don't use this directly

5 releases

0.1.4 Dec 27, 2024
0.1.3 Dec 27, 2024
0.1.2 Dec 27, 2024
0.1.1 Dec 27, 2024
0.1.0 Dec 27, 2024

#8 in #defines

Download history 205/week @ 2024-12-21 124/week @ 2024-12-28 6/week @ 2025-01-04

335 downloads per month
Used in 2 crates

Custom license

3KB

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", .. }] }

No runtime deps