Module :: inspect_type

experimental rust-status docs.rs discord

Diagnostic-purpose tools to inspect type of a variable and its size.

Sample

```rust

![ cfgattr( feature = "nightly", feature( typenameofval ) ) ]

pub use inspect_type::*;

[ cfg( feature = "nightly" ) ]

fn main() { inspecttypeof!( &[ 1, 2, 3 ][ .. ] ); // < sizeof( &[1, 2, 3][..] : &[i32] ) = 16 inspecttypeof!( &[ 1, 2, 3 ] ); // < sizeof( &[1, 2, 3] : &[i32; 3] ) = 8 }

[ cfg( not( feature = "nightly" ) ) ]

fn main() { } ```

To add to your project

sh cargo add implements

Try out from the repository

sh git clone https://github.com/Wandalen/wTools cd wTools cd sample/rust/inspect_type_trivial cargo run