| Crates.io | typing_tools |
| lib.rs | typing_tools |
| version | 0.11.0 |
| created_at | 2022-01-10 14:48:37.845795+00 |
| updated_at | 2025-06-21 15:17:43.505808+00 |
| description | Collection of general purpose tools for type checking. |
| homepage | https://github.com/Wandalen/wTools/tree/master/module/core/typing_tools |
| repository | https://github.com/Wandalen/wTools/tree/master/module/core/typing_tools |
| max_upload_size | |
| id | 511443 |
| size | 22,078 |
Collection of general purpose tools for type checking.
use typing_tools::*;
let src = Box::new( true );
assert_eq!( implements!( src => Copy ), false );
assert_eq!( implements!( src => Clone ), true );
cargo add typing_tools
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/typing_tools_trivial
cargo run