type-sig-type 0.1.0

type-sig: Internal crate that defines the TypeSignature structure, don't use this directly.
Documentation
  • Coverage
  • 0%
    0 out of 24 items documented0 out of 1 items with examples
  • Size
  • Source code size: 3.14 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 407.73 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ay0ks

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