Crates.io | typing_tools |
lib.rs | typing_tools |
version | 0.10.0 |
source | src |
created_at | 2022-01-10 14:48:37.845795 |
updated_at | 2024-10-30 21:36:46.780746 |
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 | 12,876 |
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