commit | f8f97be4ded1f1abad57854aea562efaa85a8143 | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Fri Oct 09 03:42:28 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Oct 09 03:42:28 2020 +0000 |
tree | d9ab424c3179a39af84284e6ef4280d285f20b72 | |
parent | 8130070d05e687f6ff0495e914695169ee1f98b7 [diff] | |
parent | 210769a4b767dad0877c046e958151c99c9de656 [diff] |
[automerger skipped] Skip ab/6749736 in stage. am: b2ef12c75a -s ours am: 210769a4b7 -s ours am skip reason: Change-Id If6584dd5b6f86a591d5cdba15d641e1d6a30f3f1 with SHA-1 67f8e83d33 is in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/12797281 Change-Id: I147b0e3b44009c055023072670f50b2294edf3d5
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.