Refresh Android.bp, cargo2android.json, TEST_MAPPING. am: 55de903d08 am: dd9c112726 am: 5126965c50 am: a224ae5136

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/1912455

Change-Id: If83375624774ba8e04d510678c36575cb1d385dd
tree: fd03f94c918973c95c752e8f728ce1ea606ae9f2
  1. src/
  2. .cargo_vcs_info.json
  3. .clippy.toml
  4. .editorconfig
  5. .gitattributes
  6. .gitignore
  7. .rustfmt.toml
  8. Android.bp
  9. Cargo.toml
  10. Cargo.toml.orig
  11. cargo2android.json
  12. CHANGELOG.md
  13. LICENSE-APACHE
  14. LICENSE-MIT
  15. METADATA
  16. MODULE_LICENSE_APACHE2
  17. OWNERS
  18. README.md
README.md

syn-mid

crates.io docs.rs license rustc build status

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.

Usage

Add this to your Cargo.toml:

[dependencies]
syn-mid = "0.5"

Compiler support: requires rustc 1.31+

Examples

Optional features

  • clone-impls — Clone impls for all syntax tree types.

License

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.