commit | 23850c8d35891a0df4c534fea994b4a93f357144 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 03:25:50 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Feb 17 03:25:50 2022 +0000 |
tree | fd03f94c918973c95c752e8f728ce1ea606ae9f2 | |
parent | 616534ca31aa8db15e5b28efbb403c528ad22496 [diff] | |
parent | 32788e5840f00e9548519978bf065fb53fb78760 [diff] |
Snap for 8191477 from 32788e5840f00e9548519978bf065fb53fb78760 to tm-frc-networking-release Change-Id: Ic054432c8e9aba8ee4cdd40b6e3a623ee990272a
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"
Compiler support: requires rustc 1.31+
clone-impls
— Clone impls for all syntax tree types.Licensed under either of Apache License, Version 2.0 or MIT license 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.