commit | 46061d017ee779f1bcf301c5ecce7b8fdd8cd7a5 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Mon Aug 30 22:09:31 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Aug 30 22:09:31 2021 +0000 |
tree | ddd6e3e3479e49519373673b5388e9dcb7be7aee | |
parent | 24030a963b3492d519d38b436c2fd111fa216712 [diff] | |
parent | 3d02fa101fc72277ee68aeed1fbce59a240ee6a0 [diff] |
Update TEST_MAPPING am: 739fe9c718 am: 86872cc080 am: fb113d2631 am: b2ac41244d am: 3d02fa101f Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/num-derive/+/1813683 Change-Id: I18faecc5d6b979ea4eeb469bb28624f33b53a617
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.