Bug: 162331178

Clone this repo:
  1. 429277d Update Android.bp by running cargo_embargo am: 19625938af by James Farrell · 9 weeks ago main master
  2. 1962593 Update Android.bp by running cargo_embargo by James Farrell · 10 weeks ago
  3. 1eb58b0 Update Android.bp by running cargo_embargo am: 9ec41930e8 by James Farrell · 3 months ago
  4. 9ec4193 Update Android.bp by running cargo_embargo by James Farrell · 3 months ago
  5. 0990d60 Fix path to proc-macro2 in rules.mk am: d46d6fefb4 by Per Larsen · 3 months ago

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.