Bug: 162331178

Clone this repo:
  1. ffaa3fe Migrate 20 crates to monorepo by James Farrell · 3 months ago main master
  2. df9d261 Add Cargo.toml to syn2 patch. by James Farrell · 4 months ago
  3. ee4498f Update Android.bp by running cargo_embargo am: a27369b5cd by James Farrell · 6 months ago
  4. a27369b Update Android.bp by running cargo_embargo by James Farrell · 6 months ago
  5. 778f7b2 Update Android.bp by running cargo_embargo am: 19625938af am: 429277df19 by James Farrell · 8 months ago android15-tests-dev

num-derive

crate documentation minimum rustc 1.31 build status

Procedural macros to derive numeric traits in Rust.

Usage

Add this to your Cargo.toml:

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

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.31 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.