Procedural macros to derive numeric traits in Rust
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-13 10:55:20 +02:00
src chore: sync dependencies (monorepo) 2026-04-11 00:44:59 +02:00
tests Merge #55 2023-10-07 22:11:56 +00:00
.gitignore Update num-macros to Rust master 2015-05-14 10:19:47 -07:00
Cargo.toml chore: sync dependencies (monorepo) 2026-04-13 10:55:20 +02:00
LICENSE-APACHE Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
LICENSE-MIT Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
README.md chore: sync dependencies (monorepo) 2026-04-06 20:09:25 +02:00

num-derive

Procedural macros to derive numeric traits in Rust.

Usage

Add this to your Cargo.toml:

[dependencies]
num-traits = "0.2"
num-derive = "0.4"

and this to your crate root:

#[macro_use]
extern crate num_derive;

Then you can derive traits on your own types:

#[derive(FromPrimitive, ToPrimitive)]
enum Color {
    Red,
    Blue,
    Green,
}

Optional features

  • full-syntax — Enables num-derive to handle enum discriminants represented by complex expressions. Usually can be avoided by utilizing constants, so only use this feature if namespace pollution is undesired and compile time doubling is acceptable.

Releases

Release notes are available in RELEASES.md.

Compatibility

The num-derive crate is tested for rustc 1.56 and greater.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.