#traits #fundamental #general-purpose #macro #entity #questions #compile-time

no-std dev implements

Macro to answer the question: does it implement a trait?

17 releases (8 breaking)

new 0.8.0 May 11, 2024
0.7.0 Mar 16, 2024
0.6.0 Mar 16, 2024
0.3.0 Oct 28, 2023
0.0.6 Nov 29, 2021

#1978 in Development tools

Download history 75/week @ 2024-01-22 61/week @ 2024-01-29 105/week @ 2024-02-05 168/week @ 2024-02-12 119/week @ 2024-02-19 314/week @ 2024-02-26 193/week @ 2024-03-04 565/week @ 2024-03-11 258/week @ 2024-03-18 235/week @ 2024-03-25 273/week @ 2024-04-01 133/week @ 2024-04-08 168/week @ 2024-04-15 162/week @ 2024-04-22 159/week @ 2024-04-29 428/week @ 2024-05-06

954 downloads per month
Used in 82 crates (2 directly)

MIT license

11KB
95 lines

Module :: implements

experimental rust-status docs.rs Open in Gitpod discord

Macro to answer the question: does it implement a trait?

This solution has a limitation:

  • In case entity is a function and trait is Fn/FnMut/FnOnce which current entity does not implement you will get compile-time error instead of false.

Basic use-case

use implements::*;

dbg!( implements!( 13_i32 => Copy ) );
// < implements!( 13_i32 => Copy ) : true
dbg!( implements!( Box::new( 13_i32 ) => Copy ) );
// < implements!( 13_i32 => Copy ) : false

To add to your project

cargo add implements

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cargo run --example implements_trivial

No runtime deps