This crate is a checking crate that make the type checking easier in 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 }