typing_tools 0.1.1

Collection of general purpose tools for type checking.
Documentation

module::typing_tools rust-status

Collection of general purpose tools for type checking.

Sample

use typing_tools::*;

fn main()
{
  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 sample/rust/typing_tools_trivial
cargo run