typing_tools 0.11.0

Collection of general purpose tools for type checking.
Documentation
1
2
3
4
5
6
7
8
9
//! qqq : write proper description
use typing_tools::*;

fn main()
{
  let src = Box::new( true );
  assert!( !implements!( src => Copy ) );
  assert!( implements!( src => Clone ) );
}