13 个版本 (7 个重大更改)
0.8.0 | 2024年5月11日 |
---|---|
0.7.0 | 2024年3月16日 |
0.6.0 | 2024年3月16日 |
0.3.0 | 2023年10月28日 |
0.1.0 | 2022年1月10日 |
在 开发工具 中排名 2428
每月下载量 926
在 92 个软件包中使用(直接使用3个)
39KB
371 行(不含注释)
模块 :: typing_tools
类型检查通用工具集合。
基本用例
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