commit | ca9335c8abf05bf17e5e95581e009ef2064214e4 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Fri Nov 10 06:09:29 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Nov 10 06:09:29 2023 +0000 |
tree | 7af162db7ed50bc535901cb51ec5c4bd9b9c3ec7 | |
parent | c72a1c22b06ae914a254816fc53a213b0377de56 [diff] | |
parent | b4a8370cb414cee5aa49b32dac3d591d0fd6c0a2 [diff] |
Migrate to cargo_embargo. am: 13f024459d am: b4a8370cb4 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/num-derive/+/2822529 Change-Id: I8e9d2d06dda1d443aa0562b7aeee78bcb5f9aed1 Signed-off-by: Automerger Merge Worker <[email protected]>
Procedural macros to derive numeric traits in Rust.
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, }
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.Release notes are available in RELEASES.md.
The num-derive
crate is tested for rustc 1.31 and greater.
Licensed under either of
at your option.
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.