15 releases (9 breaking)
new 0.10.0 | Oct 30, 2024 |
---|---|
0.8.0 | May 11, 2024 |
0.7.0 | Mar 16, 2024 |
0.3.0 | Oct 28, 2023 |
0.1.0 | Jan 10, 2022 |
#2312 in Development tools
631 downloads per month
Used in 75 crates
(3 directly)
34KB
393 lines
Module :: typing_tools
Collection of general purpose tools for type checking.
Basic use-case
use typing_tools::*;
let src = Box::new( true );
assert_eq!( implements!( src => Copy ), false );
assert_eq!( implements!( src => Clone ), true );
To add to your project
cargo add typing_tools
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/typing_tools_trivial
cargo run