| commit | 13efc60ae2dfa53d317d2954661d5ee51c5af3d5 | [log] [tgz] |
|---|---|---|
| author | Chih-Hung Hsieh <chh@google.com> | Mon Oct 12 10:52:38 2020 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Oct 12 10:52:38 2020 +0000 |
| tree | 6645dfa73522599474a23a487ba030aa45715e67 | |
| parent | f8f97be4ded1f1abad57854aea562efaa85a8143 [diff] | |
| parent | 212353358d4b82e25e345aa32fa3e0efac53f44f [diff] |
Copy description from Cargo.toml to METADATA am: 25652a4c1e am: c59a0b5e1d am: 212353358d Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/1457156 Change-Id: I88bab7815853bd9e2d445ce4dfa8d954cb0de92c
Providing the features between “full” and “derive” of syn.
This crate provides the following two unique data structures.
syn_mid::ItemFn -- A function whose body is not parsed.
fn process(n: usize) -> Result<()> { ... } ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^
syn_mid::Block -- A block whose body is not parsed.
{ ... } ^ ^
Other data structures are the same as data structures of syn. These are defined in this crate because they cannot be used in syn without “full” feature.
Add this to your Cargo.toml:
[dependencies] syn-mid = "0.5"
The current syn-mid requires Rust 1.31 or later.
clone-impls — Clone impls for all syntax tree types.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.