1 个不稳定版本
0.1.0 | 2022 年 8 月 2 日 |
---|
#6 in #type-checking
4KB
检查器
作者:SKKYZUS#5453
关于此包的所有信息
这是一个检查包,使得在 Rust 中进行类型检查更加容易。
用法
use checking::Checker;
fn main() {
let result: bool = Checker::type_of::<i32>(&"test".to_string());
match result {
true => println!("Correct type"),
false => println!("Incorrect type"),
}
// Expected result: Correct type
}