type-sig

Crates.iotype-sig
lib.rstype-sig
version0.1.4
created_at2024-12-27 13:38:35.912603+00
updated_at2024-12-27 17:28:05.444691+00
descriptionEver needed to inspect types more precisely? Then this crate is for you!
homepage
repositoryhttps://github.com/ay0ks/type-sig
max_upload_size
id1496410
size5,099
Dymitr (ay0ks)

documentation

README

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", .. }] }
Commit count: 0

cargo fmt